.NET Matrix Library
CSVD Constructor(CMatrix)
See Also  Send Feedback



matrix
A CMatrix object containing the matrix whose Singular Value Decomposition will be computed.
Initializes a new instance of the CSVD class computing the Singular Value Decomposition (SVD) of a general complex matrix.

Syntax

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

Parameters

matrix
A CMatrix object containing the matrix whose Singular Value Decomposition will be computed.

Remarks

The CSVD constructor never fails. Succeeded property indicates whether the internal routines have managed to calculate all the singular values of the matrix.

Requirements

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

See Also

.NET Matrix Library