一、 一元三次回歸方程 CubicMultinomialRegress.cs 方程模型為Y=a*X(3)+b*X(2)+c*X(1)+d public override double[] buildFormula() 得到系數(shù)數(shù)組,存放順序與模型系數(shù)相反,即該數(shù)組中系數(shù)的值依次是d,c,b,a。 以后所述所有模型的系數(shù)存放均與此相同(多元線性回歸方程除外)。 public override double forecast(double x) 預(yù)測函數(shù),根據(jù)模型得到預(yù)測結(jié)果 public override double computeR2() 計(jì)算相關(guān)系數(shù)(決定系數(shù)),系數(shù)越接近1,數(shù)據(jù)越滿足該模型。
標(biāo)簽: CubicMultinomialRegress override public double
上傳時(shí)間: 2015-11-25
上傳用戶:13215175592
指數(shù)回歸方程 ExponentRegress.cs 方程模型為 public override double[] buildFormula() 得到系數(shù)數(shù)組,存放順序與模型系數(shù)相反,即該數(shù)組中系數(shù)的值依次是b,a。 public override double forecast(double x) 預(yù)測函數(shù),根據(jù)模型得到預(yù)測結(jié)果。 public override double computeR2() 計(jì)算相關(guān)系數(shù)(決定系數(shù)),系數(shù)越接近1,數(shù)據(jù)越滿足該模型。
標(biāo)簽: ExponentRegress buildFormula override public
上傳時(shí)間: 2013-12-20
上傳用戶:xg262122
對數(shù)回歸方程 LogarithmRegress.cs 方程模型為 Y=a*LnX+b public override double[] buildFormula() 得到系數(shù)數(shù)組,存放順序與模型系數(shù)相反,即該數(shù)組中系數(shù)的值依次是b,a。 public override double forecast(double x) 預(yù)測函數(shù),根據(jù)模型得到預(yù)測結(jié)果。 public override double computeR2() 計(jì)算相關(guān)系數(shù)(決定系數(shù)),系數(shù)越接近1,數(shù)據(jù)越滿足該模型。
標(biāo)簽: LogarithmRegress buildFormula override public
上傳時(shí)間: 2014-01-23
上傳用戶:330402686
Nios2-flash-programmer 使用的override文件
標(biāo)簽: flash-programmer override Nios
上傳時(shí)間: 2013-12-27
上傳用戶:qunquan
開發(fā)環(huán)境: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
標(biāo)簽: must You sub_class Derivate
上傳時(shí)間: 2015-04-12
上傳用戶:liansi
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 last, the predefined style will override the other options. For example the style --style=ansi sets the option --brackets=break . If the command line specifies "--style=ansi --brackets=attach", the brackets will be attached and the style will not be ansi style. If the order on the command line is reversed to "--brackets=attach --style=ansi ", the brackets will be broken (ansi style) and the attach option will be ignored. For the options set by each style check the parseOption function in astyle_main.cpp
標(biāo)簽: options other Predefined setting
上傳時(shí)間: 2014-12-21
上傳用戶:zhangliming420
雙曲線回歸方程 HyperbolaRegress.cs 注意!該模型要求a與b的值要大于0!使用該模型時(shí)應(yīng)注意驗(yàn)證這個(gè)限制條件。我在實(shí)現(xiàn)模型時(shí)未加入任何出錯(cuò)流程控制。X不能為0。 方程模型為 public override double[] buildFormula() 得到系數(shù)數(shù)組,存放順序與模型系數(shù)相反,即該數(shù)組中系數(shù)的值依次是b,a。 public override double forecast(double x) 預(yù)測函數(shù),根據(jù)模型得到預(yù)測結(jié)果。 public override double computeR2()
標(biāo)簽: HyperbolaRegress 模型 方程 cs
上傳時(shí)間: 2014-11-30
上傳用戶:youke111
移動(dòng)平均預(yù)測 ModifyShiftAverageRegress.cs 移動(dòng)平均也可畫趨勢圖,如下: public double forecast(int interval) 移動(dòng)平均認(rèn)為數(shù)據(jù)是時(shí)間序列數(shù)據(jù),該方法預(yù)測interval個(gè)時(shí)間間隔后的值 public override double[] getTrendArray() 得到趨勢數(shù)組,該數(shù)組的數(shù)據(jù)直接在圖形中展示出來就可以產(chǎn)生趨勢線。
標(biāo)簽: ModifyShiftAverageRegress 移動(dòng) cs
上傳時(shí)間: 2014-01-01
上傳用戶:wff
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: string) of object TVideoStream = procedure(sender: TObject lpVhdr: PVIDEOHDR) of object TAudioStream = procedure(sender: TObject lpWHdr: PWAVEHDR) of object // Property Editor for driver selection type TDrivereditor = class(TPropertyEditor) function GetAttributes: TPropertyAttributes override procedure GetValues(Proc: TGetStrProc) override function GetValue: string override procedure SetValue(const Value: string) override end
標(biāo)簽: interface Messages Graphics Controls
上傳時(shí)間: 2013-12-21
上傳用戶:heart520beat
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 toString() method. toString() method is a special method inherited from the Object class. You have to override this method to display all the information about a course.
標(biāo)簽: Course the class implement
上傳時(shí)間: 2014-01-26
上傳用戶:cx111111
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1