public abstract class Function3x1Base extends java.lang.Object implements Function3x1
Constructor and Description |
---|
Function3x1Base() |
Modifier and Type | Method and Description |
---|---|
double |
eval(double[] in)
Evaluates this function for the specified inputs.
|
abstract double |
eval(double x,
double y,
double z) |
double |
eval(Point3d in) |
int |
getInputSize()
Queries the number of inputs expected by this function.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
eval
public double eval(double[] in)
MISOFunction
eval
in interface MISOFunction
in
- function inputs. Should have a length >=
MISOFunction.getInputSize()
.public int getInputSize()
MISOFunction
getInputSize
in interface MISOFunction
public abstract double eval(double x, double y, double z)
eval
in interface Function3x1
public double eval(Point3d in)
eval
in interface Function3x1