Method | Description | |
---|---|---|
Clone ( ) : object |
Creates a new object that is a copy of the current instance.
|
|
Inverse ( ) : ].double[ |
Computes the (pseudo-)inverse of the matrix given to the Singular value decomposition.
|
|
SingularValueDecomposition ( double value ) : System |
Constructs a new singular value decomposition.
|
|
SingularValueDecomposition ( double value, bool computeLeftSingularVectors, bool computeRightSingularVectors ) : System |
Constructs a new singular value decomposition.
|
|
SingularValueDecomposition ( double value, bool computeLeftSingularVectors, bool computeRightSingularVectors, bool autoTranspose ) : System |
Constructs a new singular value decomposition.
|
|
SingularValueDecomposition ( double value, bool computeLeftSingularVectors, bool computeRightSingularVectors, bool autoTranspose, bool inPlace ) : System |
Constructs a new singular value decomposition.
|
|
Solve ( double value ) : ].double[ |
Solves a linear equation system of the form AX = B.
|
|
Solve ( double value ) : double[] |
Solves a linear equation system of the form Ax = b.
|
Method | Description | |
---|---|---|
SingularValueDecomposition ( ) : System |
public SingularValueDecomposition ( double value ) : System | ||
value | double | /// The matrix to be decomposed. |
return | System |
public SingularValueDecomposition ( double value, bool computeLeftSingularVectors, bool computeRightSingularVectors ) : System | ||
value | double | /// The matrix to be decomposed. |
computeLeftSingularVectors | bool |
/// Pass |
computeRightSingularVectors | bool |
/// Pass |
return | System |
public SingularValueDecomposition ( double value, bool computeLeftSingularVectors, bool computeRightSingularVectors, bool autoTranspose ) : System | ||
value | double | /// The matrix to be decomposed. |
computeLeftSingularVectors | bool |
/// Pass |
computeRightSingularVectors | bool |
/// Pass |
autoTranspose | bool |
/// Pass |
return | System |
public SingularValueDecomposition ( double value, bool computeLeftSingularVectors, bool computeRightSingularVectors, bool autoTranspose, bool inPlace ) : System | ||
value | double | /// The matrix to be decomposed. |
computeLeftSingularVectors | bool |
/// Pass |
computeRightSingularVectors | bool |
/// Pass |
autoTranspose | bool |
/// Pass |
inPlace | bool |
/// Pass |
return | System |
public Solve ( double value ) : ].double[ | ||
value | double | Parameter B from the equation AX = B. |
return | ].double[ |
public Solve ( double value ) : double[] | ||
value | double | The b from the equation Ax = b. |
return | double[] |