User Tools

Site Tools


api:dk11:java:tatukgis.jdk.tgis_squarematrix.ludecomposition_tgis_squarematrix_tgis_squarematrix

Table of Contents

TGIS_SquareMatrix.LUDecomposition method

DK11 for Java | tatukgis.jdk.TGIS_SquareMatrix.LUDecomposition | Constructors | Methods | Properties

Computes the LU (Crout) decomposition of the matrix. Does not perform pivoting.

Available also on: Delphi | .NET | ActiveX | Python.

Syntax

// 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;

Parameters

Name Type Description
_lower TGIS_SquareMatrix returns the "lower" matrix
_upper TGIS_SquareMatrix returns the "upper" matrix

Result

Type Description
bool
Boolean
True if the LU decomposition can be performed.
2022/11/30 19:35

Page Tools