| Package | Description |
|---|---|
| org.jscience.mathematics.function |
Provides support for fairly simple symbolic math analysis
(to solve algebraic equations, integrate, differentiate, calculate
expressions, and so on).
|
| Class and Description |
|---|
| Constant
This class represents a constant function (polynomial of degree 0).
|
| Function
This abstract class represents a mapping between two sets such that
there is a unique element in the second set assigned to each element
in the first set.
|
| Interpolator
This interface represents an estimator of the values at a certain point
using surrounding points and values.
|
| Polynomial
This class represents a mathematical expression involving a sum of powers
in one or more
variables multiplied by
coefficients (such as x² + x·y + 3y²). |
| RationalFunction
This class represents the quotient of two
Polynomial,
it is also a field (invertible). |
| Term
This class represents the term of a
polynomial
such as x·y². |
| Variable
This interface represents a symbol on whose value a
Function
depends. |