Methods in org.faceless.graph.math that return Polynomial |
static Polynomial |
Polynomial.fit(DataCurve d)
Return a new polynomial that is fitted to the specified data
curve within the tolerance set by setFitTolerance . |
static Polynomial |
Polynomial.fit(double[] xvals,
double[] yvals)
Return a new polynomial that is fitted to the specified array
of X and Y values within the tolerance set by setFitTolerance . |
static Polynomial |
Polynomial.fit(int order,
double[] xvals,
double[] yvals)
Return a new polynomial of the specified order that is fitted to
the specified array of X and Y values within the tolerance set
by setFitTolerance . |