Here are three equations, i want to find out x,y and z.
x+3y-2z=5
3x+5y+6z=7
2x+4y+3z=8
To solve for x,y and z, i guess the following augumented matrix is to be formed, right? Then, what would be the operation i have to perform then?
MathNet.Numerics.LinearAlgebra.Matrix A = MathNet.Numerics.LinearAlgebra.Matrix.Create(new double[3, 4] {
{1, 3, -2,5},
{3,5,6,7},
{2,4,3,8}
});
Please help,
Thanks in advance,
Joon Choi