Свойство | Type | Description | |
---|---|---|---|
A | float[] | ||
B | float[] | ||
C | float[] |
Méthode | Description | |
---|---|---|
Solve ( float d ) : float[] |
Solve the system of equations this*x=d given the specified d. Uses the Thomas algorithm described in the wikipedia article: http://en.wikipedia.org/wiki/Tridiagonal_matrix_algorithm Not optimized. Not destructive. |
|
ToDisplayString ( string fmt = "", string prefix = "" ) : string |
Produce a string representation of the contents of this matrix.
|
|
TriDiagonalMatrixF ( int n ) : System |
Construct an NxN matrix.
|
|
this ( int row, int col ) : float |
Indexer. Setter throws an exception if you try to set any not on the super, main, or sub diagonals.
|
public Solve ( float d ) : float[] | ||
d | float | Right side of the equation. |
Résultat | float[] |
public ToDisplayString ( string fmt = "", string prefix = "" ) : string | ||
fmt | string | Optional. For String.Format. Must include the colon. Examples are ':0.000' and ',5:0.00' |
prefix | string | Optional. Per-line indentation prefix. |
Résultat | string |
public TriDiagonalMatrixF ( int n ) : System | ||
n | int | |
Résultat | System |