Click or drag to resize

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.4
Syntax
protected virtual FloatVector SolveUnconstrainedLeastSq(
	FloatMatrix A,
	FloatVector y,
	float tolerance
)

Parameters

A  FloatMatrix
A matrix.
y  FloatVector
A vector
tolerance  Single
Used to compute the rank of A. If A is found to be rank deficient the property RankDeficiencyDetected is set to true.

Return Value

FloatVector
See Also