Click or drag to resize

DoubleNonnegativeLeastSquares(DoubleMatrix, DoubleVector, Boolean, DoubleVector) Constructor

Constructs a nonnegative least squares solution for the given linear system Ax = y, optionally adding an intercept parameter to the model.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleNonnegativeLeastSquares(
	DoubleMatrix A,
	DoubleVector y,
	bool addIntercept,
	DoubleVector weights = null
)

Parameters

A  DoubleMatrix
The matrix.
y  DoubleVector
The right hand side.
addIntercept  Boolean
If true, a column of ones is prepended to a deep copy of matrix A before solving for the nonnegative least squares solution. This corresponds to adding an intercept parameter to the model. Note: the input matrix A is not changed.
weights  DoubleVector  (Optional)
Weights. Null if unweighted.
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