 | DoubleComplexSVDLeastSq Constructor (DoubleComplexMatrix, Double) |
Constructs a DoubleComplexSVDLeastSq instance from the given matrix. The
specified tolerance is used in computing the numerical rank of
the matrix.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.3
Syntaxpublic DoubleComplexSVDLeastSq(
DoubleComplexMatrix A,
double tolerance
)
Public Sub New (
A As DoubleComplexMatrix,
tolerance As Double
)
public:
DoubleComplexSVDLeastSq(
DoubleComplexMatrix^ A,
double tolerance
)
new :
A : DoubleComplexMatrix *
tolerance : float -> DoubleComplexSVDLeastSq
Parameters
- A
- Type: CenterSpace.NMath.CoreDoubleComplexMatrix
A matrix. - tolerance
- Type: SystemDouble
Tolerance for computing the numerical
rank of the matrix A. All singular values of the matrix
A less than tolerance are set to zero.
See Also