public interface FitFunction
Modifier and Type | Method and Description |
---|---|
double |
grad(double[] x,
double[] a,
int ak)
Evaluate the gradient value of the function, taken with respect to the
ak th parameter, evaluated at point x . |
double |
val(double[] x,
double[] a)
Evaluate this function at point
x . |
double val(double[] x, double[] a)
x
. The function is
otherwise defined over an array of parameters a
, that
is the target of the fitting procedure.x
- the multidimensional to evaluate the fonction ata
- the set of parameters that defines the functionx
double grad(double[] x, double[] a, int ak)
ak
th parameter, evaluated at point x
.x
- the point to evaluate the gradient ata
- the set of parameters that defines the functionak
- the index of the parameter to compute the gradientdf(x,a)/da_k
val(double[], double[])
Copyright © 2015–2021 Fiji. All rights reserved.