-
these are 5 C codes (BorlandC++) realizing the numerical algoriths
these are 5 C codes (BorlandC++) realizing the numerical algoriths
- 2023-02-28 22:25:03下载
- 积分:1
-
对卡尔曼滤波的原理进行了详细的介绍。并且有具体的程序,可以进行学习和仿真!...
对卡尔曼滤波的原理进行了详细的介绍。并且有具体的程序,可以进行学习和仿真!-The principle of Kalman filtering was introduced in detail. And there is a specific process, can study and simulations!
- 2022-02-24 22:49:34下载
- 积分:1
-
Legendre polynomial algorithm delivery Regulation
勒让德多项式递规算法-Legendre polynomial algorithm delivery Regulation
- 2022-04-17 06:09:49下载
- 积分:1
-
不使用欧式距离,而是采用相关性对数列进行聚类
不使用欧式距离,而是采用相关性对数列进行聚类-Do not use Euclidean distance, instead of using the related series of cluster
- 2022-06-16 18:26:19下载
- 积分:1
-
模板方法
模板方法实现。你会很容易理解这个awsm通过使用代码。它有一个主类,调用学生1和学生2类通过使用父类的日常活动。日常活动有骨架的方法。
- 2022-10-28 12:15:03下载
- 积分:1
-
图像拼接源代码
图像拼接源代码,VC++,图像拼接在制作全景图的过程中具有重要作用。对多幅图像进行特定模式投影后,用约束的相位相关度法求取水平垂直偏移量,然后寻找最佳缝合线,实现图像拼接,最后采用多分辨率算法对全图进行拼接处理去除曝光差异和鬼影。
- 2022-12-04 14:00:05下载
- 积分:1
-
高阶谱切片
通过采样的时间序列数据,滤去低频的确定性信号,获得零均值的有色噪声,应用BBR公式,获得高阶谱。冻结一些维数,就可以得到二维的曲线,即高阶谱切片,或称重构功率谱。本程序实现三维空间不同角度的切片,有动画功能。
- 2022-03-03 08:59:40下载
- 积分:1
-
几个实用算法:质数 组合数 公约数 字符串长度
几个实用算法:质数 组合数 公约数 字符串长度-several practical algorithm : a few quality portfolio Conventions few string length
- 2022-06-19 18:45:29下载
- 积分:1
-
n阶方阵的克劳特(crout)分解matlab实现
应用背景n阶方阵的克劳特(crout)分解matlab实现关键技术在矩阵分析课上学习了n阶方阵的三角分解或叫克劳特(crout)分解,便尝试着用MATLAB编程实现。给一个例子如下:
原矩阵a=[2 1 -5 1;1 -3 0 -6;0 2 -1 2;1 4 -7 6]
执行 [l,u]=crout(a);
分解后得:
l=[2 0 0 0;1 -3.5 0 0;0 2 0.4286 0;1 3.5 -2 -9]
u=[1 0.2 2.5 0.5;0 1 -0.7143 1.8571;0 0 1 -4;0 0 0 1]
- 2022-03-20 07:06:32下载
- 积分:1
-
对数回归方程logarithmregress.cs方程模型y = * LN…
对数回归方程 LogarithmRegress.cs
方程模型为 Y=a*LnX+b
public override double[] buildFormula()
得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。
public override double forecast(double x)
预测函数,根据模型得到预测结果。
public override double computeR2()
计算相关系数(决定系数),系数越接近1,数据越满足该模型。
-Logarithmic regression equation LogarithmRegress.cs equation model for Y = a* LnX+ Bpublic override double [] buildFormula () get coefficient array, the storage order and model coefficients contrary, that is, the array is followed by the value of coefficient b, a. public override double forecast (double x) prediction function, according to the results of model prediction. public override double computeR2 () calculated the correlation coefficient (determination coefficient), coefficient of the closer one, the data satisfy the model more.
- 2022-08-31 23:15:03下载
- 积分:1