Method | Description | |
---|---|---|
Det ( ) : double |
Determinant
|
|
Inverse ( ) : double[][] |
Solves a set of equation systems of type
|
|
LUDecomposition ( System.Matrix A ) : System |
LU Decomposition
|
|
Solve ( System.Matrix B ) : System.Matrix |
Solve A*X = B
|
|
Solve ( double value_ren ) : double[] |
Solve the matrix for a 1d array.
|
public LUDecomposition ( System.Matrix A ) : System | ||
A | System.Matrix | Rectangular matrix |
return | System |
public Solve ( System.Matrix B ) : System.Matrix | ||
B | System.Matrix | A Matrix with as many rows as A and any number of columns. |
return | System.Matrix |
public Solve ( double value_ren ) : double[] | ||
value_ren | double | The value to solve for. |
return | double[] |