The factorial function. More...
Public Member Functions | |
FactFunction () | |
double | of (double[] d, int numParam) |
Takes the (int) of the value at index location 0 and computes the factorial of that number. | |
boolean | acceptNumParam (int numParam) |
Returns true only for 1 parameter, false otherwise. | |
String | toString () |
The factorial function.
Definition at line 6 of file FactFunction.java.
com.graphbuilder.math.func.FactFunction.FactFunction | ( | ) |
Definition at line 8 of file FactFunction.java.
boolean com.graphbuilder.math.func.FactFunction.acceptNumParam | ( | int | numParam | ) |
Returns true only for 1 parameter, false otherwise.
Implements com.graphbuilder.math.func.Function.
Definition at line 28 of file FactFunction.java.
double com.graphbuilder.math.func.FactFunction.of | ( | double[] | d, | |
int | numParam | |||
) |
Takes the (int) of the value at index location 0 and computes the factorial of that number.
Implements com.graphbuilder.math.func.Function.
Definition at line 14 of file FactFunction.java.
String com.graphbuilder.math.func.FactFunction.toString | ( | ) |
Definition at line 32 of file FactFunction.java.