Click or drag to resize

FloatNonnegativeLeastSquares(FloatMatrix, FloatVector) Constructor

Constructs a nonnegative least squares solution for the given linear system Ax = y.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatNonnegativeLeastSquares(
	FloatMatrix A,
	FloatVector y
)

Parameters

A  FloatMatrix
The matrix.
y  FloatVector
The right hand side of the linear system.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of rows in A is not equal to the length of y.
NMathExceptionThrown if the specified maximum number of iterations performed by the algorithm was exceeded.
See Also