The min function. More...


Public Member Functions | |
| MinFunction () | |
| double | of (double[] d, int numParam) |
| Returns the minimum value of the specified inputs. | |
| boolean | acceptNumParam (int numParam) |
| Returns true for 0 or more parameters, false otherwise. | |
| String | toString () |
The min function.
Definition at line 6 of file MinFunction.java.
| com.graphbuilder.math.func.MinFunction.MinFunction | ( | ) |
Definition at line 8 of file MinFunction.java.
| boolean com.graphbuilder.math.func.MinFunction.acceptNumParam | ( | int | numParam | ) |
Returns true for 0 or more parameters, false otherwise.
Implements com.graphbuilder.math.func.Function.
Definition at line 28 of file MinFunction.java.
| double com.graphbuilder.math.func.MinFunction.of | ( | double[] | d, | |
| int | numParam | |||
| ) |
Returns the minimum value of the specified inputs.
Double.MIN_VALUE is returned for 0 parameters.
Implements com.graphbuilder.math.func.Function.
Definition at line 13 of file MinFunction.java.
| String com.graphbuilder.math.func.MinFunction.toString | ( | ) |
Definition at line 32 of file MinFunction.java.
1.6.1