Click or drag to resize

Matrix3FQDUDecomposition Method

Decomposites the matrix by Gram-Schmidt orthogonalization algorithm (the QR algorithm).

Namespace:  NeoAxis
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2023.1.2.0 (2023.1.2.0)
Syntax
C#
public void QDUDecomposition(
	out Matrix3F kQ,
	out Vector3F kD,
	out Vector3F kU
)

Parameters

kQ
Type: NeoAxisMatrix3F
Orthogonal.
kD
Type: NeoAxisVector3F
Diagonal.
kU
Type: NeoAxisVector3F
Upper triangular.
See Also