Encog.MathUtil.Matrices.Matrix.Solve C# (CSharp) Method

Solve() public method

Solve A*X = B
public Solve ( Matrix b ) : Matrix
b Matrix right hand side.
return Matrix
        public Matrix Solve(Matrix b)
        {
            if (Rows == Cols)
            {
                return (new LUDecomposition(this)).Solve(b);
            }
            else
            {
                return (new QRDecomposition(this)).Solve(b);
            }
        }