コード例 #1
0
 public void Perform(math_Function F, double Ax, double Bx, double Cx)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
 public bool IsSolutionReached(math_Function theFunction)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public bool GKRule(math_Function theFunction, double theLower, double theUpper, Vector theGaussP,
                    Vector theGaussW, Vector theKronrodP, Vector theKronrodW, ref double theValue,
                    ref double theError)
 {
     throw new NotImplementedException();
 }
コード例 #4
0
 public math_Function(math_Function parameter1)
     : base()
 {
     throw new NotImplementedException("Native class is abstract");
 }
コード例 #5
0
 public void Perform(math_Function theFunction, double theLower, double theUpper, int theNbPnts)
 {
     throw new NotImplementedException();
 }
コード例 #6
0
 public void Perform(math_Function theFunction, double theLower, double theUpper, int theNbPnts,
                     double theTolerance, int theMaxNbIter)
 {
     throw new NotImplementedException();
 }
コード例 #7
0
 public bool LimitAndMayBeSwap(math_Function F, double theA, ref double theB, ref double theFB, ref double theC,
                               ref double theFC)
 {
     throw new NotImplementedException();
 }
コード例 #8
0
 public math_KronrodSingleIntegration(math_Function theFunction, double theLower, double theUpper, int theNbPnts,
                                      double theTolerance, int theMaxNbIter)
     : base()
 {
     throw new NotImplementedException();
 }
コード例 #9
0
 public void Perform(math_Function F)
 {
     throw new NotImplementedException();
 }
コード例 #10
0
 public math_BracketMinimum(math_Function F, double A, double B, double FA, double FB)
     : base()
 {
     throw new NotImplementedException();
 }
コード例 #11
0
 public math_BracketedRoot(math_Function F, double Bound1, double Bound2, double Tolerance)
     : base()
 {
     throw new NotImplementedException();
 }
コード例 #12
0
 public void Perform(math_Function F, double Lower, double Upper, int Order)
 {
     throw new NotImplementedException();
 }
コード例 #13
0
 public math_GaussSingleIntegration(math_Function F, double Lower, double Upper, int Order, double Tol)
     : base()
 {
     throw new NotImplementedException();
 }