SbMatrixLUDecomposition Method |
Perform in-place LU decomposition of matrix. index is index of rows in
matrix. d is the parity of row swaps.
Namespace: OIV.InventorAssembly: OIV.Inventor.SbLinear (in OIV.Inventor.SbLinear.dll) Version: 2024.2.2.Release.778f4cc64de03c89c1282c66aa1f73c0e9a1408b
Syntax public bool LUDecomposition(
int[] index,
out float d
)
Public Function LUDecomposition (
index As Integer(),
<OutAttribute> ByRef d As Single
) As Boolean
public:
bool LUDecomposition(
array<int>^ index,
[OutAttribute] float% d
)
member LUDecomposition :
index : int[] *
d : float32 byref -> bool
Parameters
- index
- Type: SystemInt32
Index of rows in matrix. - d
- Type: SystemSingle
Parity of row swaps
Return Value
Type:
Booleanfalse if matrix is singular,
true otherwise.
See Also