Example usage for org.jfree.data.function Function2D interface-usage

List of usage examples for org.jfree.data.function Function2D interface-usage

Introduction

In this page you can find the example usage for org.jfree.data.function Function2D interface-usage.

Usage

From source file org.jfree.data.function.LineFunction2D.java

/**
 * A function in the form y = a + bx.
 */
public class LineFunction2D implements Function2D, Serializable {

    /** The intercept. */

From source file org.jfree.data.function.PowerFunction2D.java

/**
 * A function of the form y = a * x ^ b.
 */
public class PowerFunction2D implements Function2D, Serializable {

    /** The 'a' coefficient. */

From source file org.jfree.data.function.PolynomialFunction2D.java

/**
 * A function in the form <code>y = a0 + a1 * x + a2 * x^2 + ... + an *
 * x^n</code>.  Instances of this class are immutable.
 *
 * @since 1.0.14
 */

From source file org.jfree.data.function.NormalDistributionFunction2D.java

/**
 * A normal distribution function.  See
 * http://en.wikipedia.org/wiki/Normal_distribution.
 */
public class NormalDistributionFunction2D implements Function2D, Serializable {