Class Overview
A function of the form y = a * x ^ b.
Summary
Public Constructors |
|
PowerFunction2D(double a, double b)
Creates a new power function.
|
Public Methods |
double
|
getValue(double x)
Returns the value of the function for a given input ('x').
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
From interface
org.jfree.data.function.Function2D
abstract
double
|
getValue(double x)
Returns the value of the function ('y') for a given input ('x').
|
|
Public Constructors
public
PowerFunction2D
(double a, double b)
Creates a new power function.
Parameters
a
| the 'a' coefficient. |
b
| the 'b' coefficient.
|
Public Methods
public
double
getValue
(double x)
Returns the value of the function for a given input ('x').