DK11 for Java | tatukgis.jdk.TGIS_SquareMatrix.LUDecomposition | Constructors | Methods | Properties
Computes the LU (Crout) decomposition of the matrix. Does not perform pivoting.
// Java public bool LUDecomposition( /* out */ /* out */ @OutParameter @ValueTypeParameter VarParameter<Integer> TGIS_SquareMatrix> _lower, /* out */ /* out */ @OutParameter @ValueTypeParameter VarParameter<Integer> TGIS_SquareMatrix> _upper );
// Oxygene public function LUDecomposition( out _lower : TGIS_SquareMatrix; out _upper : TGIS_SquareMatrix ) : Boolean;
Name | Type | Description |
---|---|---|
_lower | TGIS_SquareMatrix | returns the "lower" matrix |
_upper | TGIS_SquareMatrix | returns the "upper" matrix |
Type | Description |
---|---|
bool Boolean | True if the LU decomposition can be performed. |