The max function. More...
Public Member Functions | |
MaxFunction () | |
double | of (double[] d, int numParam) |
Returns the maximum value of the specified inputs. | |
boolean | acceptNumParam (int numParam) |
Returns true for 0 or more parameters, false otherwise. | |
String | toString () |
The max function.
Definition at line 6 of file MaxFunction.java.
com.graphbuilder.math.func.MaxFunction.MaxFunction | ( | ) |
Definition at line 8 of file MaxFunction.java.
boolean com.graphbuilder.math.func.MaxFunction.acceptNumParam | ( | int | numParam | ) |
Returns true for 0 or more parameters, false otherwise.
Implements com.graphbuilder.math.func.Function.
Definition at line 27 of file MaxFunction.java.
double com.graphbuilder.math.func.MaxFunction.of | ( | double[] | d, | |
int | numParam | |||
) |
Returns the maximum value of the specified inputs.
Double.MAX_VALUE is returned for 0 parameters.
Implements com.graphbuilder.math.func.Function.
Definition at line 13 of file MaxFunction.java.
String com.graphbuilder.math.func.MaxFunction.toString | ( | ) |
Definition at line 31 of file MaxFunction.java.