Click or drag to resize

Matrix3x3DecomposeIntoRQ 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 (Matrix3x3 R, Matrix3x3 Q) DecomposeIntoRQ()

Return Value

ValueTupleMatrix3x3, Matrix3x3
The two matrices R (upper triangular) and Q (orthonormal).
See Also