Package org.apfloat.jscience
Class FixedPrecisionApfloatField
java.lang.Object
java.lang.Number
org.jscience.mathematics.number.Number<FixedPrecisionApfloatField>
org.apfloat.jscience.AbstractField<FixedPrecisionApfloatField,Apfloat>
org.apfloat.jscience.FixedPrecisionApfloatField
- All Implemented Interfaces:
Serializable
,Comparable<FixedPrecisionApfloatField>
,Immutable
,Realtime
,ValueType
,XMLSerializable
,Field<FixedPrecisionApfloatField>
,GroupAdditive<FixedPrecisionApfloatField>
,GroupMultiplicative<FixedPrecisionApfloatField>
,Ring<FixedPrecisionApfloatField>
,Structure<FixedPrecisionApfloatField>
This class represents a fixed-precision floating-point number. The precision
is reset after each computation using the provided
FixedPrecisionApfloatHelper
.
This can help avoid accumulating round-off errors and loss of precision
in complicated computations such as matrix inversion.- Since:
- 1.8.0
- Version:
- 1.8.0
- Author:
- Mikko Tommila
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFixedPrecisionApfloatField
(Apfloat value, FixedPrecisionApfloatHelper helper) Constructs a new floating-point field object with the specified value. -
Method Summary
Modifier and TypeMethodDescriptioncopy()
Returns a copy of this object.helper()
Return the precision helper.inverse()
Returns the multiplicative inverse of this object.opposite()
Returns the additive inverse of this object.Returns the sum of this object with the one specified.Returns the product of this object with the one specified.Methods inherited from class org.apfloat.jscience.AbstractField
compareTo, doubleValue, equals, hashCode, isLargerThan, longValue, toText, value
Methods inherited from class org.jscience.mathematics.number.Number
byteValue, floatValue, intValue, isGreaterThan, isLessThan, minus, pow, shortValue, toString
-
Constructor Details
-
FixedPrecisionApfloatField
Constructs a new floating-point field object with the specified value.- Parameters:
value
- The value.helper
- The precision helper.
-
-
Method Details
-
plus
Description copied from class:AbstractField
Returns the sum of this object with the one specified.- Specified by:
plus
in interfaceGroupAdditive<FixedPrecisionApfloatField>
- Specified by:
plus
in classAbstractField<FixedPrecisionApfloatField,
Apfloat> - Parameters:
that
- The addend.- Returns:
this + that
-
opposite
Description copied from class:AbstractField
Returns the additive inverse of this object.- Specified by:
opposite
in interfaceGroupAdditive<FixedPrecisionApfloatField>
- Specified by:
opposite
in classAbstractField<FixedPrecisionApfloatField,
Apfloat> - Returns:
-this
-
times
Description copied from class:AbstractField
Returns the product of this object with the one specified.- Specified by:
times
in interfaceGroupMultiplicative<FixedPrecisionApfloatField>
- Specified by:
times
in interfaceRing<FixedPrecisionApfloatField>
- Specified by:
times
in classAbstractField<FixedPrecisionApfloatField,
Apfloat> - Parameters:
that
- The multiplicand.- Returns:
this * that
-
inverse
Description copied from class:AbstractField
Returns the multiplicative inverse of this object.- Specified by:
inverse
in interfaceGroupMultiplicative<FixedPrecisionApfloatField>
- Specified by:
inverse
in classAbstractField<FixedPrecisionApfloatField,
Apfloat> - Returns:
1 / this
- Throws:
ArithmeticException
- If the divisor is zero.
-
copy
Description copied from class:AbstractField
Returns a copy of this object.- Specified by:
copy
in interfaceValueType
- Specified by:
copy
in classAbstractField<FixedPrecisionApfloatField,
Apfloat> - Returns:
- A copy of this object.
-
helper
Return the precision helper.- Returns:
- The precision helper.
-