Click or drag to resize

Matrix4x4DecomposeIntoQR Method

Decomposes this matrix into a product Q*R, in which Q is an orthonormal matrix, and R is an upper triangular matrix, using the Gram–Schmidt process. This process is also known as QR-decomposition (https://en.wikipedia.org/wiki/QR_decomposition#QL,_RQ_and_LQ_decompositions).

Namespace: Altaxo.Geometry
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public (Matrix4x4 Q, Matrix4x4 R) DecomposeIntoQR()

Return Value

ValueTupleMatrix4x4, Matrix4x4
The two matrices Q (orthonormal) and R (upper triangular).
See Also