搜索结果
找到约 12 项符合
override 的查询结果
按分类筛选
数学计算 一、 一元三次回归方程 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 double forecast(double x) ...
数学计算 指数回归方程 ExponentRegress.cs 方程模型为 public override double[] buildFormula() 得到系数数组
指数回归方程 ExponentRegress.cs
方程模型为
public override double[] buildFormula()
得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。
public override double forecast(double x)
预测函数,根据模型得到预测结果。
public override double computeR2()
计算相关系数(决定系数),系数越接近1 ...
数学计算 对数回归方程 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()
计算相关系数(决定系数), ...
嵌入式/单片机编程 Nios2-flash-programmer 使用的override文件
Nios2-flash-programmer 使用的override文件
人工智能/神经网络 开发环境: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
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 style. If placed la ...
数学计算 双曲线回归方程 HyperbolaRegress.cs 注意!该模型要求a与b的值要大于0!使用该模型时应注意验证这个限制条件。我在实现模型时未加入任何出错流程控制。X不能为0。 方程模型为
双曲线回归方程 HyperbolaRegress.cs
注意!该模型要求a与b的值要大于0!使用该模型时应注意验证这个限制条件。我在实现模型时未加入任何出错流程控制。X不能为0。
方程模型为
public override double[] buildFormula()
得到系数数组,存放顺序与模型系数相反,即该数组中系数的值依次是b,a。
public override double for ...
数学计算 移动平均预测 ModifyShiftAverageRegress.cs 移动平均也可画趋势图
移动平均预测 ModifyShiftAverageRegress.cs
移动平均也可画趋势图,如下:
public double forecast(int interval)
移动平均认为数据是时间序列数据,该方法预测interval个时间间隔后的值
public override double[] getTrendArray()
得到趋势数组,该数组的数据直接在图形中展示出来就可以产生趋势线。 ...
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: integer status: st ...
Java编程 Refer to the UML diagram above and implement the Course class. After you define the Course class, yo
Refer to the UML diagram above and implement the Course class. After you define the Course class, you must create a Course object with the following details:
Programming I, WXES1114, taught by SMT.
Besides, your program must test all the accessor and mutator methods you had defined and the toStrin ...