DK11 for Delphi | GisMatrix.TGIS_SquareMatrix.LUDecomposition | Constructors | Methods | Properties
Computes the LU (Crout) decomposition of the matrix. Does not perform pivoting.
// Delphi public function LUDecomposition( out _lower : TGIS_SquareMatrix; out _upper : TGIS_SquareMatrix ) : Boolean;
// C++ Builder public: bool LUDecomposition( /* out */ TGIS_SquareMatrix* &_lower, /* out */ TGIS_SquareMatrix* &_upper );
Name | Type | Description |
---|---|---|
_lower | TGIS_SquareMatrix | returns the "lower" matrix |
_upper | TGIS_SquareMatrix | returns the "upper" matrix |
Type | Description |
---|---|
Boolean | True if the LU decomposition can be performed. |