Ejemplo n.º 1
0
 public NewtonMethod(DiffrerntialOperators.Function[] functions, Vector initialVector)
     : this(functions, initialVector, 1e-6)
 {
 }
Ejemplo n.º 2
0
 public NewtonMethod(DiffrerntialOperators.Function[] functions)
     : this(functions, new Vector(functions.Length))
 {
 }
Ejemplo n.º 3
0
 public NewtonMethod(DiffrerntialOperators.Function[] functions, Vector initialVector, double precision)
 {
     this.f = functions.Clone() as DiffrerntialOperators.Function[];
     this.initialVector = initialVector.Clone() as Vector;
     this.precision = precision;
 }