NonlinLeastSquaresIFunctionF Method |
User supplied nonlinear least-squares function.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax void F(
double[] x,
double[] fvalue
)
Sub F (
x As Double(),
fvalue As Double()
)
void F(
array<double>^ x,
array<double>^ fvalue
)
abstract F :
x : float[] *
fvalue : float[] -> unit
Parameters
- x
- Type: SystemDouble
A double array containing the point at which the function
is to be evaluated. The contents of this array must not be altered
by this function.
- fvalue
- Type: SystemDouble
A double array which, on return, contains the function
value at x.
See Also