Class Term
java.lang.Object
org.jscience.mathematics.function.Term
- All Implemented Interfaces:
Serializable
,Comparable<Term>
,javolution.lang.Immutable
,javolution.lang.Realtime
,javolution.lang.ValueType
public final class Term
extends Object
implements Serializable, Comparable<Term>, javolution.lang.ValueType, javolution.lang.Realtime
This class represents the term of a
polynomial
such as x·y²
.- See Also:
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
Compares this term with the one specified for order.copy()
Returns an entierely new copy of this termallocated
by the calling thread (possibly on the stack).Return the division of this term with the one specified.boolean
Indicates if this term is equal to the object specified.int
getPower
(int index) Returns the power of the variable at the specified position.int
Returns the power of the specified variable.Variable<?>
getVariable
(int index) Returns the variable at the specified index (variables are lexically ordered).final int
hashCode()
Returns a hash code for this term.int
size()
Returns the number of variables for this term.Return the product of this term with the one specified.final String
toString()
Returns the text representation of this term as ajava.lang.String
.javolution.text.Text
toText()
Returns the text representation of this term.static Term
Return the term corresponding to the specified variable raised to the specified power.
-
Field Details
-
ONE
Holds the multiplicative identity.
-
-
Method Details
-
valueOf
Return the term corresponding to the specified variable raised to the specified power.- Parameters:
v
- the variable.n
- the power.- Returns:
- the term for
vn
- Throws:
IllegalArgumentException
- ifn < 0
-
size
public int size()Returns the number of variables for this term.- Returns:
- the number of variables.
-
getVariable
Returns the variable at the specified index (variables are lexically ordered).- Parameters:
index
- the variable index.- Returns:
- this term variables at specified position.
- Throws:
IndexOutOfBoundsException
- if(index < 0) || (index >= size())
-
getPower
public int getPower(int index) Returns the power of the variable at the specified position.- Parameters:
index
- the variable index.- Returns:
- the power of the variable at the specified index.
- Throws:
IndexOutOfBoundsException
- if(index < 0) || (index >= size())
-
getPower
Returns the power of the specified variable.- Parameters:
v
- the variable for which the power is returned.- Returns:
- the power of the corresponding variable or
0
if this term does not hold the specified variable.
-
times
Return the product of this term with the one specified.- Parameters:
that
- the term multiplier.- Returns:
this · that
- Throws:
IllegalArgumentException
- if the specified term holds a variable having the same symbol as one of the variable of this term; but both variables are distinct.
-
divide
Return the division of this term with the one specified.- Parameters:
that
- the term divisor.- Returns:
this / that
- Throws:
UnsupportedOperationException
- if this division would result in negative power.IllegalArgumentException
- if the specified term holds a variable having the same symbol as one of the variable of this term; but both variables are distinct.
-
equals
Indicates if this term is equal to the object specified. -
hashCode
public final int hashCode()Returns a hash code for this term. -
toString
Returns the text representation of this term as ajava.lang.String
. -
toText
public javolution.text.Text toText()Returns the text representation of this term.- Specified by:
toText
in interfacejavolution.lang.Realtime
-
copy
Returns an entierely new copy of this termallocated
by the calling thread (possibly on the stack).- Specified by:
copy
in interfacejavolution.lang.ValueType
- Returns:
- an identical and independant copy of this term.
-
compareTo
Compares this term with the one specified for order.- Specified by:
compareTo
in interfaceComparable<Term>
- Parameters:
that
- the term to be compared to.- Returns:
- a negative integer, zero, or a positive integer as this term is less than, equal to, or greater than the specified term.
-