public interface Minimizer
Modifier and Type | Method and Description |
---|---|
int |
getNumSolutions()
Returns the number of candidate solutions each run returns.
|
double[][] |
getSolutions()
Returns the list of candidate solutions.
|
void |
minimise()
Runs the minimization.
|
void |
setInitParams(double[] aInit)
Sets the initial values of the optimized parameters.
|
void |
setMeasurements(double[] newMeas)
Initializes the fitting procedure with a new set of
measurements (dependent variables).
|
void setInitParams(double[] aInit) throws MinimizerException
aInit
- Array containing the new parameter values starting from index
0.MinimizerException
void setMeasurements(double[] newMeas) throws MinimizerException
newMeas
- The new set of measurements.MinimizerException
void minimise() throws MinimizerException
MinimizerException
double[][] getSolutions()
int getNumSolutions()