DK11 for ActiveX | TatukGIS_XDK11.ITGIS_SquareMatrix.LUDecomposition | Methods | Properties
Computes the LU (Crout) decomposition of the matrix. Does not perform pivoting.
// C# public WordBool LUDecomposition( out ITGIS_SquareMatrix _lower, out ITGIS_SquareMatrix _upper );
' VisualBasic Public Function LUDecomposition( <out> _lower As ITGIS_SquareMatrix, <out> _upper As ITGIS_SquareMatrix ) As WordBool
// Oxygene public function LUDecomposition( out _lower : ITGIS_SquareMatrix; out _upper : ITGIS_SquareMatrix ) : WordBool;
Name | Type | Description |
---|---|---|
_lower | ITGIS_SquareMatrix | returns the "lower" matrix |
_upper | ITGIS_SquareMatrix | returns the "upper" matrix |
Type | Description |
---|---|
WordBool | True if the LU decomposition can be performed. |