Guest User

Untitled

a guest
Nov 15th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. The solution I am hoping to get to is at least [ 2, -1 ].
  2. But the fundamental solution is folow: [2C; -1C].
  3. You can see than Det(A)=0 and Rank(A) =1;
  4. Of course you are know that such systems have trivial solution [0,0].
  5.  
  6. Matrix<double> A = Matrix<double>.Build.DenseOfArray(new double[,] {
  7. { 1, 2 },
  8. { 3, 6 },
  9. });
  10. Vector<double> B = Vector<double>.Build.Dense(new double[] { 0, 0 });
  11. var result = A.Solve(B); //result = Nan, Nan
Add Comment
Please, Sign In to add comment