LUDecomposition.Solve Method

DotNetMatrix

An NDoc Documented Class Library

LUDecomposition.Solve Method 

Solve A*X = B

[Visual Basic]Overridable Public Function Solve( _
   ByVal B As GeneralMatrix _
) As GeneralMatrix
[C#]
public virtual GeneralMatrix Solve(
   GeneralMatrix B
);

Parameters

B
A Matrix with as many rows as A and any number of columns.

Return Value

X so that L*U*X = B(piv,:)

Exceptions

Exception Type Condition
ArgumentException Matrix row dimensions must agree.
SystemException Matrix is singular.

See Also

LUDecomposition Class | DotNetMatrix Namespace