Java org.apache.commons.math.analysis PolynomialFunction fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math.analysis PolynomialFunction fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math.analysis PolynomialFunction.

The text is from its open source code.

Subclass

org.apache.commons.math.analysis.PolynomialFunction has subclasses.
Click this link to see all its subclasses.

Constructor

PolynomialFunction(double c[])
Construct a polynomial with the given coefficients.

Method

intdegree()
Returns the degree of the polynomial
double[]getCoefficients()
Returns a copy of the coefficients array.
PolynomialFunctionpolynomialDerivative()
Returns the derivative as a PolynomialRealFunction
doublevalue(double x)
Compute the value of the function for the given argument.