-
1, one dollar three regression equations CubicMultinomialRegress.cs equation mod...
一、 一元三次回归方程 CubicMultinomialRegress.cs
方程模型为Y=a*X(3)+b*X(2)+c*X(1)+d
public override double[] buildFormula()
得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是d,c,b,a。
以后所述所有模型的系数存放均与此相同(多元线性回归方程除外)。
public override double forecast(double x)
预测函数,根据模型得到预测结果
public override double computeR2()
计算相关系数(决定系数),系数越接近1,数据越满足该模型。
-1, one dollar three regression equations CubicMultinomialRegress.cs equation model for Y = a* X (3)+ B* X (2)+ C* X (1)+ Dpublic override double [] buildFormula () get coefficient array, store order and model coefficients contrary, that is, the array is followed by the value of coefficient d, c, b, a. After all the model described in the coefficient of storage are the same (except for multiple linear regression equation). 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 dat
- 2022-01-26 07:28:21下载
- 积分:1
-
图的操作,实现遍历功能
图的操作,实现遍历功能-operation of the plan, to achieve functional Traversing
- 2022-10-06 07:25:03下载
- 积分:1
-
改进的ica方法
自己写的代码,用改进的ica方法实现盲源分离,效果比传统的盲源分离要好很多,可以直接运行实现。
- 2022-07-19 16:58:43下载
- 积分:1
-
实序列IFFT傅里叶反变换算法
离散傅立叶反变换 (IDFT)及其快速算法 (IFFT)通常是针对一般的复数序列定义和推导的 ,
而在实际应用中 ,进行时频分析的信号大多是实数信号 ,即实序列。
是基于C语言编写的基于时间抽取的基二实序列FFT傅里叶变换算法和IFFT傅里叶反变换算法。
- 2023-08-14 04:30:04下载
- 积分:1
-
GEP(函数发现等)
基于遗传算法的基因编程表达式,在函数发现这方面具有较好的表现。用C#实现,在做参数优化的时候用上GEP会取得更好的效果。
不同于GA,不会出现过早收敛
- 2022-01-31 12:28:25下载
- 积分:1
-
一个C++封装的,基于状态转换表设计的有限状态机实现例子
一个C++封装的,基于状态转换表设计的有限状态机实现例子-a C Packaging, based on state transition table design Finite State Machine example
- 2022-11-19 07:25:03下载
- 积分:1
-
归并排序算法的C++
该代码读取输入文本文件并将其排序,然后将这些数字排序为输出文本文件。代码使用合并排序算法进行排序。
- 2022-09-20 12:50:03下载
- 积分:1
-
particle filter using c
particle filter using c
- 2022-02-02 07:23:49下载
- 积分:1
-
这事高斯法解方程组实例
这事高斯法解方程组实例-this Gaussian Solving equations example
- 2023-04-02 13:30:03下载
- 积分:1
-
小游戏“神奇翻转”
也称“点灯游戏”。9×9的矩阵中,每选择一个元素,它与其上下左右共5个元素都会由1变为0、或是由0变为1。将所有元素变为1则胜利。本源码使用命令行界面实现这一功能,一方面支持用户手动操作游玩,另一方面给出了算法来自动解决这一问题。
- 2023-05-20 19:20:03下载
- 积分:1