 | FloatComplexLeastSquares Constructor (FloatComplexMatrix, FloatComplexVector, Single) |
Constructs a least squares solution for the given linear system
Ax = y using the specified tolerance to compute the
effective rank.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic FloatComplexLeastSquares(
FloatComplexMatrix A,
FloatComplexVector y,
float tolerance
)
Public Sub New (
A As FloatComplexMatrix,
y As FloatComplexVector,
tolerance As Single
)
public:
FloatComplexLeastSquares(
FloatComplexMatrix^ A,
FloatComplexVector^ y,
float tolerance
)
new :
A : FloatComplexMatrix *
y : FloatComplexVector *
tolerance : float32 -> FloatComplexLeastSquares
Parameters
- A
- Type: CenterSpace.NMath.CoreFloatComplexMatrix
The matrix. - y
- Type: CenterSpace.NMath.CoreFloatComplexVector
The right hand side. - tolerance
- Type: SystemSingle
Tolerance used to compute the effective rank
of A.
Exceptions
Remarks
The effective rank of A is determined by treating as zero
those singular values that are less than tolerance times the largest
singular value.
See Also