.NET Matrix Library
SparseSVD Constructor
See Also  Send Feedback



matrix
A Matrix object containing the matrix whose Singular Value Decomposition will be computed.
numSingularValues
Specifies the number of singular values and singular vectors to be computed.
tolerance
Specifies the acceptable accuracy of results.
Creates a new instance of the SparseSVD class computing the specified number of singular values and singular vectors.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal matrix As SparseMatrix, _
   ByVal numSingularValues As Integer, _
   ByVal tolerance As Double _
)
Visual Basic (Usage)Copy Code
Dim matrix As SparseMatrix
Dim numSingularValues As Integer
Dim tolerance As Double
 
Dim instance As New SparseSVD(matrix, numSingularValues, tolerance)
C# 
public SparseSVD( 
   SparseMatrix matrix,
   int numSingularValues,
   double tolerance
)
C++/CLI 
public:
SparseSVD( 
   SparseMatrix^ matrix,
   int numSingularValues,
   double tolerance
)

Parameters

matrix
A Matrix object containing the matrix whose Singular Value Decomposition will be computed.
numSingularValues
Specifies the number of singular values and singular vectors to be computed.
tolerance
Specifies the acceptable accuracy of results.

Requirements

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

See Also

.NET Matrix Library