Click or drag to resize

Matrix4x4DecomposeIntoRQ Method

Decomposes this matrix into a product R*Q, in which R is an upper triangular matrix, and Q is an orthonormal matrix, using the Gram–Schmidt process. This process is also known as RQ-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 R, Matrix4x4 Q) DecomposeIntoRQ()

Return Value

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