Click or drag to resize

ConstrainedLeastSquaresProblem(DoubleMatrix, DoubleVector) Constructor

Constructs a ConstrainedLeastSquaresProblem instance for the problem Ax = b.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public ConstrainedLeastSquaresProblem(
	DoubleMatrix A,
	DoubleVector b
)

Parameters

A  DoubleMatrix
A matrix.
b  DoubleVector
A vector.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the dimension of the matrix A and the vector b do not match for the problem Ax = b. A.Rows must equal b.Length
See Also