Method | Description | |
---|---|---|
Inverse ( ) : ].double[ |
Solves a set of equation systems of type
|
|
LuDecomposition ( double value ) : System |
Construct a new LU decomposition.
|
|
LuDecomposition ( double value, bool transpose ) : System |
Construct a LU decomposition.
|
|
LuDecomposition ( double value, bool transpose, bool inPlace ) : System |
Construct a LU decomposition.
|
|
Solve ( double value ) : ].double[ |
Solves a set of equation systems of type
|
|
Solve ( double value ) : double[] |
Solves a set of equation systems of type
|
|
SolveTranspose ( double value ) : ].double[ |
Solves a set of equation systems of type
|
public LuDecomposition ( double value ) : System | ||
value | double | The matrix A to be decomposed. |
return | System |
public LuDecomposition ( double value, bool transpose ) : System | ||
value | double | The matrix A to be decomposed. |
transpose | bool | True if the decomposition should be performed on /// the transpose of A rather than A itself, false otherwise. Default is false. |
return | System |
public LuDecomposition ( double value, bool transpose, bool inPlace ) : System | ||
value | double | The matrix A to be decomposed. |
transpose | bool | True if the decomposition should be performed on /// the transpose of A rather than A itself, false otherwise. Default is false. |
inPlace | bool | True if the decomposition should be performed over the
/// |
return | System |
public Solve ( double value ) : ].double[ | ||
value | double | Right hand side matrix with as many rows as |
return | ].double[ |
public Solve ( double value ) : double[] | ||
value | double | Right hand side matrix with as many rows as |
return | double[] |
public SolveTranspose ( double value ) : ].double[ | ||
value | double | Right hand side matrix with as many columns as |
return | ].double[ |