The log function. More...
Public Member Functions | |
LogFunction () | |
double | of (double[] d, int numParam) |
If the number of parameters specified is 1, then the log base 10 is taken of the value at index location 0. | |
boolean | acceptNumParam (int numParam) |
Returns true only for 1 or 2 parameters, false otherwise. | |
String | toString () |
The log function.
Definition at line 6 of file LogFunction.java.
com.graphbuilder.math.func.LogFunction.LogFunction | ( | ) |
Definition at line 8 of file LogFunction.java.
boolean com.graphbuilder.math.func.LogFunction.acceptNumParam | ( | int | numParam | ) |
Returns true only for 1 or 2 parameters, false otherwise.
Implements com.graphbuilder.math.func.Function.
Definition at line 25 of file LogFunction.java.
double com.graphbuilder.math.func.LogFunction.of | ( | double[] | d, | |
int | numParam | |||
) |
If the number of parameters specified is 1, then the log base 10 is taken of the value at index location 0.
If the number of parameters specified is 2, then the base value is at index location 1.
Implements com.graphbuilder.math.func.Function.
Definition at line 15 of file LogFunction.java.
String com.graphbuilder.math.func.LogFunction.toString | ( | ) |
Definition at line 29 of file LogFunction.java.