Package | Description |
---|---|
org.jfree.data.function |
Representation for simple functions.
|
org.jfree.data.general |
Data interfaces and classes.
|
Modifier and Type | Class and Description |
---|---|
class |
LineFunction2D
A function in the form y = a + bx.
|
class |
NormalDistributionFunction2D
A normal distribution function.
|
class |
PolynomialFunction2D
A function in the form
y = a0 + a1 * x + a2 * x^2 + ... |
class |
PowerFunction2D
A function of the form y = a * x ^ b.
|
Modifier and Type | Method and Description |
---|---|
static XYDataset |
DatasetUtilities.sampleFunction2D(Function2D f,
double start,
double end,
int samples,
java.lang.Comparable seriesKey)
Creates an
XYDataset by sampling the specified function over a
fixed range. |
static XYSeries |
DatasetUtilities.sampleFunction2DToSeries(Function2D f,
double start,
double end,
int samples,
java.lang.Comparable seriesKey)
Creates an
XYSeries by sampling the specified function over a
fixed range. |