Creates an object to solve a nonlinear least squares problem.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public NonlinLeastSquares(
	int m,
	int n
)
Visual Basic (Declaration)
Public Sub New ( _
	m As Integer, _
	n As Integer _
)
Visual C++
public:
NonlinLeastSquares(
	int m, 
	int n
)

Parameters

m
Type: System..::.Int32
The number of functions
n
Type: System..::.Int32
The number of variables. n must be less than or equal to m.

See Also