-
无迹卡尔曼滤波
基于无迹卡尔曼滤波的室内移动系统的性能强化,比较经典。-Unscented Kalman filter-based indoor mobile systems to strengthen performance, compare the classic.
- 2022-08-21 21:53:20下载
- 积分:1
-
求概率密度函数
对未知的分布绘制分布曲线,将数据文件按照高度和分布准备,预先判断分布区间,然后对区间进行细分,得到每一区间的概率,最后获得所有区间的概率分布情况,绘制概率分布曲线。
- 2022-09-29 16:45:05下载
- 积分:1
-
OFDM源代码仿真
有关OFDM的源代码,非常非常有用
- 2022-05-08 13:57:33下载
- 积分:1
-
用C++编写最小二乘曲线拟合函数程序
用C++编写最小二乘曲线拟合函数程序-prepared least squares curve fitting procedures Function
- 2022-01-22 02:02:13下载
- 积分:1
-
use mathematical algorithms for solving the inverse matrix function using three...
利用数学算法的公式求逆矩阵并用三个函数表示。-use mathematical algorithms for solving the inverse matrix function using three said.
- 2022-08-11 10:07:25下载
- 积分:1
-
BP网络的C/C++实现,含有详细代码和例子,适合初学者
应用背景人工神经网络(ANN)中关于反向传播算法的内容,相比单个感知器而言,采用多层网络的反向传播算法能表示出更多种类的非线性曲面,整个神经网络可以分成三层:输入层,隐藏层,输出层,通过加权线性变换,层与层之间的传递,最终得到输入层的实数值。关键技术
本人根据附件里面的文章编写的反向传播算法代码,里面含有详细的代码注释和文章例子, 可以让初学者深刻理解反向传播算法,适合初学者学习。给出BP算法训练的例子,对单个样本的训练的情况进行编写和验证。
//输入层到隐层的过程
float fNetj[m];
for (int j= 0;j < m; j++){
fNetj[j] = fTheta[n][j]; //这里权值矩阵最后一列是偏置,偏置×1还是偏置,所以直接加上,
//后面就不用乘了
for(int i = 0;i < n; i++){ //得到netj 的值 netj= X^V
fNetj[j] +=fInputdata[i]*fTheta[i][j];
}
fMidResult[j] = 1/(1 + exp(-fNetj[j]));
//cout
- 2022-08-03 01:10:12下载
- 积分:1
-
有限元计算程序,供软件工程,力学专业的老师和学生参考
有限元计算程序,供软件工程,力学专业的老师和学生参考-Finite element program for software engineering, mechanical professional teachers and students for reference
- 2022-05-31 17:32:46下载
- 积分:1
-
k-means的java实现
应用背景Implement k-means clustering on a training data set to predict classification values of a test data set.关键技术The experiment intended to classify test data values using the data
mining strategy known as k-means clustering.
The 6 variables in the training data are used to plot the data and
centroids are placed to locate clumps of the 255, classified training
data. Once located, a classification value can be assigned to the 100,
test data.
- 2022-02-20 08:20:20下载
- 积分:1
-
算法首先实现最佳解决河内塔与GUI
程序在Visual C ++,它使用最好优先算法来解决河内塔。还实现了一个图形导航和交互的键盘接口供其使用。来自包括指令和源代码,再加上必要的纹理和.exe文件的文件
- 2022-03-21 19:54:07下载
- 积分:1
-
Online digital handwriting recognition, pattern recognition, it is based on proc...
联机数字手写识别,模式识别中很基础的程序,也是基于点轨迹的识别-Online digital handwriting recognition, pattern recognition, it is based on procedures, is also based on the identification of trajectory points
- 2022-02-01 06:20:38下载
- 积分:1