Beispiel #1
0
 public ConjugateGradient(Matrix a, Matrix b)
 {
     A = a;
     B = b.ToVector();
     e = 0.0001;
 }