 | FloatNonnegativeLeastSquaresSolveUnconstrainedLeastSq Method |
Method used to solve the unconstrained least squares problems,
Ax = y, generated by
the nonnegative least squares algorithm.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.3
Syntaxprotected virtual FloatVector SolveUnconstrainedLeastSq(
FloatMatrix A,
FloatVector y,
float tolerance
)
Protected Overridable Function SolveUnconstrainedLeastSq (
A As FloatMatrix,
y As FloatVector,
tolerance As Single
) As FloatVector
protected:
virtual FloatVector^ SolveUnconstrainedLeastSq(
FloatMatrix^ A,
FloatVector^ y,
float tolerance
)
abstract SolveUnconstrainedLeastSq :
A : FloatMatrix *
y : FloatVector *
tolerance : float32 -> FloatVector
override SolveUnconstrainedLeastSq :
A : FloatMatrix *
y : FloatVector *
tolerance : float32 -> FloatVector
Parameters
- A
- Type: CenterSpace.NMath.CoreFloatMatrix
A matrix. - y
- Type: CenterSpace.NMath.CoreFloatVector
A vector - tolerance
- Type: SystemSingle
Used to compute the rank of A.
If A is found to be rank deficient the property
RankDeficiencyDetected is set to true.
Return Value
Type:
FloatVector
See Also