public interface MISOFunction
Modifier and Type | Method and Description |
---|---|
double |
eval(double[] in)
Evaluates this function for the specified inputs.
|
default double |
eval(VectorNd in)
Evaluates this function for the specified inputs.
|
int |
getInputSize()
Queries the number of inputs expected by this function.
|
int getInputSize()
double eval(double[] in)
in
- function inputs. Should have a length >=
getInputSize()
.default double eval(VectorNd in)
in
- function inputs. Should have a length >=
getInputSize()
.