|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Decimal64 | |
---|---|
org.apache.commons.math3.util | Convenience routines and common data structures used throughout the commons-math library. |
Uses of Decimal64 in org.apache.commons.math3.util |
---|
Fields in org.apache.commons.math3.util declared as Decimal64 | |
---|---|
static Decimal64 |
Decimal64.NAN
The constant value of Double.NaN as a Decimal64 . |
static Decimal64 |
Decimal64.NEGATIVE_INFINITY
The constant value of Double.NEGATIVE_INFINITY as a
Decimal64 . |
static Decimal64 |
Decimal64.ONE
The constant value of 1d as a Decimal64 . |
static Decimal64 |
Decimal64.POSITIVE_INFINITY
The constant value of Double.POSITIVE_INFINITY as a
Decimal64 . |
static Decimal64 |
Decimal64.ZERO
The constant value of 0d as a Decimal64 . |
Methods in org.apache.commons.math3.util that return Decimal64 | |
---|---|
Decimal64 |
Decimal64.add(Decimal64 a)
Compute this + a. |
Decimal64 |
Decimal64.divide(Decimal64 a)
Compute this ÷ a. |
Decimal64 |
Decimal64Field.getOne()
Get the multiplicative identity of the field. |
Decimal64 |
Decimal64Field.getZero()
Get the additive identity of the field. |
Decimal64 |
Decimal64.multiply(Decimal64 a)
Compute this × a. |
Decimal64 |
Decimal64.multiply(int n)
Compute n × this. |
Decimal64 |
Decimal64.negate()
Returns the additive inverse of this element. |
Decimal64 |
Decimal64.reciprocal()
Returns the multiplicative inverse of this element. |
Decimal64 |
Decimal64.subtract(Decimal64 a)
Compute this - a. |
Methods in org.apache.commons.math3.util that return types with arguments of type Decimal64 | |
---|---|
Field<Decimal64> |
Decimal64.getField()
Get the Field to which the instance belongs. |
Class<? extends FieldElement<Decimal64>> |
Decimal64Field.getRuntimeClass()
Returns the runtime class of the FieldElement. |
Methods in org.apache.commons.math3.util with parameters of type Decimal64 | |
---|---|
Decimal64 |
Decimal64.add(Decimal64 a)
Compute this + a. |
int |
Decimal64.compareTo(Decimal64 o)
The current implementation returns the same value as new Double(this.doubleValue()).compareTo(new
Double(o.doubleValue())) |
Decimal64 |
Decimal64.divide(Decimal64 a)
Compute this ÷ a. |
Decimal64 |
Decimal64.multiply(Decimal64 a)
Compute this × a. |
Decimal64 |
Decimal64.subtract(Decimal64 a)
Compute this - a. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |