Uses of Interface
org.jfree.data.function.Function2D
-
Packages that use Function2D Package Description org.jfree.data.function Representation for simple functions.org.jfree.data.general Data interfaces and classes. -
-
Uses of Function2D in org.jfree.data.function
Classes in org.jfree.data.function that implement Function2D Modifier and Type Class Description classLineFunction2DA function in the form y = a + bx.classNormalDistributionFunction2DA normal distribution function.classPolynomialFunction2DA function in the formy = a0 + a1 * x + a2 * x^2 + ... + an * x^n.classPowerFunction2DA function of the form y = a * x ^ b. -
Uses of Function2D in org.jfree.data.general
Methods in org.jfree.data.general with parameters of type Function2D Modifier and Type Method Description static <S extends Comparable<S>>
XYDataset<S>DatasetUtils. sampleFunction2D(Function2D f, double start, double end, int samples, S seriesKey)Creates anXYDatasetby sampling the specified function over a fixed range.static <S extends Comparable<S>>
XYSeries<S>DatasetUtils. sampleFunction2DToSeries(Function2D f, double start, double end, int samples, S seriesKey)Creates anXYSeriesby sampling the specified function over a fixed range.
-