Click or drag to resize

Matrix3x3DecomposeIntoQR 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 (Matrix3x3 Q, Matrix3x3 R) DecomposeIntoQR()

Return Value

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