Class PolynomialCubic1D_F64

java.lang.Object
georegression.struct.curve.PolynomialCubic1D_F64
All Implemented Interfaces:
PolynomialCurve_F64

public class PolynomialCubic1D_F64 extends Object implements PolynomialCurve_F64
Quadratic curve in 1D: f(x) = a + bx + c x2 + d x3

NOTE: The coefficient order is the reverse of what you will find for sake of consistency as the order of the polynomial is increased.

  • Field Details

    • a

      public double a
      Coefficients
    • b

      public double b
      Coefficients
    • c

      public double c
      Coefficients
    • d

      public double d
      Coefficients
  • Constructor Details

    • PolynomialCubic1D_F64

      public PolynomialCubic1D_F64()
    • PolynomialCubic1D_F64

      public PolynomialCubic1D_F64(double a, double b, double c, double d)
  • Method Details