Click or drag to resize

Matrix3QDUDecomposition Method

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

Namespace:  NeoAxis
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
public void QDUDecomposition(
	out Matrix3 kQ,
	out Vector3 kD,
	out Vector3 kU
)

Parameters

kQ
Type: NeoAxisMatrix3
Orthogonal.
kD
Type: NeoAxisVector3
Diagonal.
kU
Type: NeoAxisVector3
Upper triangular.
See Also