| java.lang.Object org.jfree.data.function.PowerFunction2D
PowerFunction2D | public class PowerFunction2D implements Function2D(Code) | | A function of the form y = a * x ^ b.
|
Constructor Summary | |
public | PowerFunction2D(double a, double b) Creates a new power function. |
Method Summary | |
public double | getValue(double x) Returns the value of the function for a given input ('x').
Parameters: x - the x-value. |
PowerFunction2D | public PowerFunction2D(double a, double b)(Code) | | Creates a new power function.
Parameters: a - the 'a' coefficient. Parameters: b - the 'b' coefficient. |
getValue | public double getValue(double x)(Code) | | Returns the value of the function for a given input ('x').
Parameters: x - the x-value. The value. |
|
|