.NET Matrix Library
CQR Class
Members  See Also  Send comments on this topic


Represents a QR factorization of a general complex matrix.

Syntax

Visual Basic (Declaration) 
Public Class CQR 
   Implements IDisposable 
C# 
public class CQR : IDisposable  
C++/CLI 
public ref class CQR : public IDisposable  

Remarks

The QR factorization of a general m by n matrix A is formed as A*P = Q*R where P is a permutation matrix, Q is a mxn (mxm if m<n) orthogonal matrix and R is a nxn (mxn if m<n) upper triangular (upper trapezoidal if m<n) matrix.

The CQR class can be used for solving least-square problems.

Requirements

Namespace: Bluebit.MatrixLibrary

Platforms: Windows 7, Windows Vista, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows 2000

Assembly: Bluebit.MatrixLibrary (in Bluebit.MatrixLibrary.dll)

See Also

.NET Matrix Library Documentation