.NET Matrix Library
QR Constructor(Matrix)
See Also  Send Feedback



matrix
A Matrix object containing the matrix to factor.
Initializes a new instance of the QR class computing the QR factorization of a real complex matrix using column pivoting.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal matrix As Matrix _
)
Visual Basic (Usage)Copy Code
Dim matrix As Matrix
 
Dim instance As New QR(matrix)
C# 
public QR( 
   Matrix matrix
)
C++/CLI 
public:
QR( 
   Matrix^ matrix
)

Parameters

matrix
A Matrix object containing the matrix to factor.

Remarks

The QR class constructor never fails.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library