Example #1
0
 public Multidimensial(IntroducedFunction _y, double _Eps, int _maxIter)
 {
     y         = _y;
     amountVar = y.Variables;
     Eps       = _Eps;
     maxIter   = _maxIter;
 }
 //Конструктор
 public VariableMetric(IntroducedFunction _y, Coord _x0, double _Eps, int _maxIter) : base(_y, _Eps, _maxIter)
 {
     x    = new Coord[maxIter + 2];
     x[0] = _x0;
     x[1] = x[0];
 }
Example #3
0
 //Конструктор
 public NewtonMod(IntroducedFunction _y, Coord _x0, double _Eps, int _maxIter) : base(_y, _Eps, _maxIter)
 {
     x    = new Coord[3];
     x[0] = _x0;
     x[1] = x[0];
 }