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: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public void QDUDecomposition(
	out Matrix3 kQ,
	out Vector3 kD,
	out Vector3 kU
)

Parameters

kQ  Matrix3
Orthogonal.
kD  Vector3
Diagonal.
kU  Vector3
Upper triangular.
See Also