Fit() public method

Not supported.
public Fit ( double observations, double weights, Fitting options ) : void
observations double
weights double
options Fitting
return void
コード例 #1
0
ファイル: TDistributionTest.cs プロジェクト: qusma/framework
 public void FitTest()
 {
     bool thrown = false;
     TDistribution target = new TDistribution(1);
     try { target.Fit(null, null, null); }
     catch (NotSupportedException) { thrown = true; }
     Assert.IsTrue(thrown);
 }