| 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).
|
| Modifier and Type | Field and Description |
|---|---|
static Term |
Term.ONE
Holds the multiplicative identity.
|
| Modifier and Type | Method and Description |
|---|---|
Term |
Term.copy()
Returns an entierely new copy of this term
allocated
by the calling thread (possibly on the stack). |
Term |
Term.divide(Term that)
Return the division of this term with the one specified.
|
Term |
Term.times(Term that)
Return the product of this term with the one specified.
|
static Term |
Term.valueOf(Variable<?> v,
int n)
Return the term corresponding to the specified variable raised to
the specified power.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Term> |
Polynomial.getTerms()
Returns the terms of this polynomial.
|
| Modifier and Type | Method and Description |
|---|---|
int |
Term.compareTo(Term that)
Compares this term with the one specified for order.
|
Term |
Term.divide(Term that)
Return the division of this term with the one specified.
|
R |
Polynomial.getCoefficient(Term term)
Returns the coefficient for the specified term.
|
Term |
Term.times(Term that)
Return the product of this term with the one specified.
|
static <R extends Ring<R>> |
Polynomial.valueOf(R coefficient,
Term term)
Returns a polynomial corresponding to the specified
term
with the specified coefficient multiplier. |