NonNegativeLeastSquares Constructor |
Construct a new NonNegativeLeastSquares instance to solve
Ax-b where x is a vector of n unknowns.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public NonNegativeLeastSquares(
double[,] a,
double[] b
)
Public Sub New (
a As Double(,),
b As Double()
)
public:
NonNegativeLeastSquares(
array<double,2>^ a,
array<double>^ b
)
new :
a : float[,] *
b : float[] -> NonNegativeLeastSquares
Parameters
- a
- Type: SystemDouble
The double input matrix.
- b
- Type: SystemDouble
A double array of length a.GetLength(0).
See Also