CADability dotNET
QR Decomposition.

Namespace: CADability.LinearAlgebra
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
[SerializableAttribute]
public class QRDecomposition
Visual Basic
<SerializableAttribute> _
Public Class QRDecomposition
Visual C++
[SerializableAttribute]
public ref class QRDecomposition

Remarks

For an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n orthogonal matrix Q and an n-by-n upper triangular matrix R so that A = Q*R.
The QR decompostion always exists, even if the matrix does not have full rank, so the constructor will never fail. The primary use of the QR decomposition is in the least squares solution of nonsquare systems of simultaneous linear equations. This will fail if IsFullRank() returns false.

Inheritance Hierarchy

System..::..Object
  CADability.LinearAlgebra..::..QRDecomposition

See Also