搜索:override

找到约 14 项符合「override」的查询结果

结果 14
https://www.eeworm.com/dl/647/249025.html 嵌入式/单片机编程

Nios2-flash-programmer 使用的override文件

Nios2-flash-programmer 使用的override文件
下载 23
·
查看 1090
https://www.eeworm.com/dl/641/226291.html 数学计算

指数回归方程 ExponentRegress.cs 方程模型为 public override double[] buildFormula() 得到系数数组

指数回归方程 ExponentRegress.cs 方程模型为 public override double[] buildFormula() 得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。 public override double forecast(double x) 预测函数,根据模型得到预测结果。 public override double computeR2() 计算相关系数(决 ...
下载 169
·
查看 1059
https://www.eeworm.com/dl/641/226294.html 数学计算

对数回归方程 LogarithmRegress.cs 方程模型为 Y=a*LnX+b public override double[] buildFormula() 得到系数数组

对数回归方程 LogarithmRegress.cs 方程模型为 Y=a*LnX+b public override double[] buildFormula() 得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。 public override double forecast(double x) 预测函数,根据模型得到预测结果。 public override double computeR2() 计算相 ...
下载 83
·
查看 1130
https://www.eeworm.com/dl/641/226290.html 数学计算

一、 一元三次回归方程 CubicMultinomialRegress.cs 方程模型为Y=a*X(3)+b*X(2)+c*X(1)+d public override double[] buil

一、 一元三次回归方程 CubicMultinomialRegress.cs 方程模型为Y=a*X(3)+b*X(2)+c*X(1)+d public override double[] buildFormula() 得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是d,c,b,a。 以后所述所有模型的系数存放均与此相同(多元线性回归方程除外)。 public override doubl ...
下载 148
·
查看 1150
https://www.eeworm.com/dl/664/231566.html Delphi/CppBuilder

unit Video interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, stdctrl

unit Video interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, stdctrls, ExtCtrls, avicap, mmsystem, dsgnintf // Types for event-procedures type TCapStatusProc = procedure(Sender: TObject) of object TCapStatusCallback = procedure(Sender: TObject nID ...
下载 141
·
查看 1076
https://www.eeworm.com/dl/641/226292.html 数学计算

双曲线回归方程 HyperbolaRegress.cs 注意!该模型要求a与b的值要大于0!使用该模型时应注意验证这个限制条件。我在实现模型时未加入任何出错流程控制。X不能为0。 方程模型为

双曲线回归方程 HyperbolaRegress.cs 注意!该模型要求a与b的值要大于0!使用该模型时应注意验证这个限制条件。我在实现模型时未加入任何出错流程控制。X不能为0。 方程模型为 public override double[] buildFormula() 得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。 public ...
下载 81
·
查看 1085
https://www.eeworm.com/dl/650/140280.html 人工智能/神经网络

开发环境:Delphi 简要说明:TGABase is a abstract class. You must Derivate a sub_class from it. You must overr

开发环境:Delphi 简要说明:TGABase is a abstract class. You must Derivate a sub_class from it. You must override abstract function calculateFitness. By the way, this class can only get minimum solution
下载 56
·
查看 1118
https://www.eeworm.com/dl/634/195989.html Applet

Predefined Style options define the style by setting several other options. If other options are als

Predefined Style options define the style by setting several other options. If other options are also used, the placement of the predefined style option in the command line is important. If the predefined style option is placed first, the other options may override the predefined ...
下载 122
·
查看 1104
https://www.eeworm.com/dl/666/292152.html Delphi控件源码

Interface for Microsoft Audio Compression Manager. - Delphi Source The ACM uses existing driver i

Interface for Microsoft Audio Compression Manager. - Delphi Source The ACM uses existing driver interface hooks to override the default mapping algorithm for waveform audio devices. This allows the ACM to intercept device-open calls. After a call has been intercepted, the ACM ca ...
下载 159
·
查看 1090
https://www.eeworm.com/dl/641/226295.html 数学计算

移动平均预测 ModifyShiftAverageRegress.cs 移动平均也可画趋势图

移动平均预测 ModifyShiftAverageRegress.cs 移动平均也可画趋势图,如下: public double forecast(int interval) 移动平均认为数据是时间序列数据,该方法预测interval个时间间隔后的值 public override double[] getTrendArray() 得到趋势数组,该数组的数据直接在图形中展示出来就可以产 ...
下载 108
·
查看 1097