Package me.datafox.dfxengine.math.utils
Class Operations
java.lang.Object
me.datafox.dfxengine.math.utils.Operations
Various math operations for
Numerals
.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Numeral
add
(double augend, double addend) static Numeral
add
(float augend, float addend) static Numeral
add
(int augend, int addend) static Numeral
add
(long augend, long addend) static BigDecNumeral
add
(BigDecimal augend, BigDecimal addend) static BigIntNumeral
add
(BigInteger augend, BigInteger addend) static Numeral
Adds twoNumerals
together.static Numeral
cbrt
(double value) static Numeral
cbrt
(float value) static Numeral
cbrt
(int value) static Numeral
cbrt
(long value) static Numeral
cbrt
(BigDecimal value) static Numeral
cbrt
(BigInteger value) static Numeral
Calculates the cube root of aNumeral
.static Numeral
divide
(double dividend, double divisor) static Numeral
divide
(float dividend, float divisor) static Numeral
divide
(int dividend, int divisor) static Numeral
divide
(long dividend, long divisor) static BigDecNumeral
divide
(BigDecimal dividend, BigDecimal divisor) static BigIntNumeral
divide
(BigInteger dividend, BigInteger divisor) static Numeral
Divides aNumeral
from another Numeral.static Numeral
exp
(double value) static Numeral
exp
(float value) static Numeral
exp
(int value) static Numeral
exp
(long value) static Numeral
exp
(BigDecimal value) static Numeral
exp
(BigInteger value) static Numeral
Calculates the natural exponent of aNumeral
.static MathContext
static Numeral
Inverts aNumeral
.static Numeral
lerp
(double value, double min, double max) static Numeral
lerp
(float value, float min, float max) static Numeral
lerp
(int value, int min, int max) static Numeral
lerp
(long value, long min, long max) static Numeral
lerp
(BigDecimal value, BigDecimal min, BigDecimal max) static Numeral
lerp
(BigInteger value, BigInteger min, BigInteger max) static Numeral
Linearly interpolates aNumeral
based on a minimum and maximum numeral.static Numeral
log
(double value) static Numeral
log
(float value) static Numeral
log
(int value) static Numeral
log
(long value) static Numeral
log
(BigDecimal value) static Numeral
log
(BigInteger value) static Numeral
Calculates the natural logarithm of aNumeral
.static Numeral
log10
(double value) static Numeral
log10
(float value) static Numeral
log10
(int value) static Numeral
log10
(long value) static Numeral
log10
(BigDecimal value) static Numeral
log10
(BigInteger value) static Numeral
Calculates the base 10 logarithm of aNumeral
.static Numeral
log2
(double value) static Numeral
log2
(float value) static Numeral
log2
(int value) static Numeral
log2
(long value) static Numeral
log2
(BigDecimal value) static Numeral
log2
(BigInteger value) static Numeral
Calculates the binary logarithm of aNumeral
.static Numeral
logN
(double value, double base) static Numeral
logN
(float value, float base) static Numeral
logN
(int value, int base) static Numeral
logN
(long value, long base) static Numeral
logN
(BigDecimal value, BigDecimal base) static Numeral
logN
(BigInteger value, BigInteger base) static Numeral
Calculates the logarithm aNumeral
in the base of another Numeral.static Numeral
Returns the maximum of twoNumerals
, that is, the Numeral that represents a greater number.static Numeral
Returns the minimum of twoNumerals
, that is, the Numeral that represents a lesser number.static Numeral
multiply
(double multiplicand, double multiplier) static Numeral
multiply
(float multiplicand, float multiplier) static Numeral
multiply
(int multiplicand, int multiplier) static Numeral
multiply
(long multiplicand, long multiplier) static BigDecNumeral
multiply
(BigDecimal multiplicand, BigDecimal multiplier) static BigIntNumeral
multiply
(BigInteger multiplicand, BigInteger multiplier) static Numeral
Multiplies twoNumerals
together.static Numeral
power
(double base, double exponent) static Numeral
power
(float base, float exponent) static Numeral
power
(int base, int exponent) static Numeral
power
(long base, long exponent) static Numeral
power
(BigDecimal base, BigDecimal exponent) static Numeral
power
(BigInteger base, BigInteger exponent) static Numeral
Raises aNumeral
to the power of another Numeral.static Numeral
root
(double value, double base) static Numeral
root
(float value, float base) static Numeral
root
(int value, int base) static Numeral
root
(long value, long base) static Numeral
root
(BigDecimal value, BigDecimal base) static Numeral
root
(BigInteger value, BigInteger base) static Numeral
Calculates the root of aNumeral
in the base of another Numeral.static void
setContext
(MathContext context) static Numeral
sqrt
(double value) static Numeral
sqrt
(float value) static Numeral
sqrt
(int value) static Numeral
sqrt
(long value) static Numeral
sqrt
(BigDecimal value) static Numeral
sqrt
(BigInteger value) static Numeral
Calculates the square root of aNumeral
.static Numeral
subtract
(double minuend, double subtrahend) static Numeral
subtract
(float minuend, float subtrahend) static Numeral
subtract
(int minuend, int subtrahend) static Numeral
subtract
(long minuend, long subtrahend) static BigDecNumeral
subtract
(BigDecimal minuend, BigDecimal subtrahend) static BigIntNumeral
subtract
(BigInteger minuend, BigInteger subtrahend) static Numeral
Subtracts aNumeral
from another Numeral.
-
Constructor Details
-
Operations
public Operations()
-
-
Method Details
-
getContext
- Returns:
- current
MathContext
forBigDecimal
operations
-
setContext
- Parameters:
context
-MathContext
forBigDecimal
operations
-
add
Adds twoNumerals
together. The Numeral parameters are converted to the most significant type withNumerals.getSignificantType(NumeralType...)
. Additionally, the resulting Numeral will be converted to a higher type if the addition would result in an overflow or underflow.- Parameters:
augend
-Numeral
to be addedaddend
-Numeral
to be added- Returns:
- result of the addition
- Throws:
NullPointerException
- if any of theNumerals
returnnull
forNumeral.getType()
IllegalArgumentException
- if any of theNumerals
do not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
subtract
Subtracts aNumeral
from another Numeral. The Numeral parameters are converted to the most significant type withNumerals.getSignificantType(NumeralType...)
. Additionally, the resulting Numeral will be converted to a higher type if the subtraction would result in an overflow or underflow.- Parameters:
minuend
-Numeral
to be subtracted fromsubtrahend
-Numeral
to be subtracted- Returns:
- result of the subtraction
- Throws:
NullPointerException
- if any of theNumerals
returnnull
forNumeral.getType()
IllegalArgumentException
- if any of theNumerals
do not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
multiply
Multiplies twoNumerals
together. The Numeral parameters are converted to the most significant type withNumerals.getSignificantType(NumeralType...)
. Additionally, the resulting Numeral will be converted to a higher type if the multiplication would result in an overflow or underflow.- Parameters:
multiplicand
-Numeral
to be multipliedmultiplier
-Numeral
to be multiplied- Returns:
- result of the multiplication
- Throws:
NullPointerException
- if any of theNumerals
returnnull
forNumeral.getType()
IllegalArgumentException
- if any of theNumerals
do not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
divide
Divides aNumeral
from another Numeral. The Numeral parameters are converted to the most significant type withNumerals.getSignificantType(NumeralType...)
. Additionally, the resulting Numeral will be converted to a higher type if the division would result in an overflow or underflow.- Parameters:
dividend
-Numeral
to be divideddivisor
-Numeral
to be divided with- Returns:
- result of the division
- Throws:
ArithmeticException
- if the divisor is zeroNullPointerException
- if any of theNumerals
returnnull
forNumeral.getType()
IllegalArgumentException
- if any of theNumerals
do not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
inverse
Inverts aNumeral
. This is equivalent todivide(1, numeral)
. The resulting Numeral will be converted to a higher type if the division would result in an overflow or underflow.- Parameters:
numeral
-Numeral
to be inverted- Returns:
- result of the inversion
- Throws:
ArithmeticException
- if the divisor is zeroNullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
power
Raises aNumeral
to the power of another Numeral. The Numeral parameters are converted to the most significant type withNumerals.getSignificantType(NumeralType...)
. Additionally, the resulting Numeral will be converted to a higher type if the exponentiation would result in an overflow or underflow.- Parameters:
base
-Numeral
to be exponentiatedexponent
- exponent- Returns:
- result of the exponentiation
- Throws:
NullPointerException
- if any of theNumerals
returnnull
forNumeral.getType()
IllegalArgumentException
- if any of theNumerals
do not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
exp
Calculates the natural exponent of aNumeral
. The resulting Numeral will be converted to a higher type if the exponentiation would result in an overflow or underflow.- Parameters:
numeral
-Numeral
to be calculated- Returns:
- natural exponent of the specified
Numeral
- Throws:
NullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
sqrt
Calculates the square root of aNumeral
.- Parameters:
numeral
-Numeral
to be calculated- Returns:
- square root of the specified
Numeral
- Throws:
ArithmeticException
- if theNumeral
is negativeNullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
cbrt
Calculates the cube root of aNumeral
.- Parameters:
numeral
-Numeral
to be calculated- Returns:
- cube root of the specified
Numeral
- Throws:
NullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
root
Calculates the root of aNumeral
in the base of another Numeral. The Numeral parameters are converted to the most significant type withNumerals.getSignificantType(NumeralType...)
. Additionally, the resulting Numeral will be converted to a higher type if the operation would result in an overflow or underflow.- Parameters:
numeral
-Numeral
to be calculatedbase
- base of the root- Returns:
- result of the operation
- Throws:
ArithmeticException
- if theNumeral
is negative or if the root is zeroNullPointerException
- if any of theNumerals
returnnull
forNumeral.getType()
IllegalArgumentException
- if any of theNumerals
do not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
log
Calculates the natural logarithm of aNumeral
.- Parameters:
numeral
-Numeral
to be calculated- Returns:
- natural logarithm of the specified
Numeral
- Throws:
ArithmeticException
- if theNumeral
is zero or negativeNullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
log2
Calculates the binary logarithm of aNumeral
.- Parameters:
numeral
-Numeral
to be calculated- Returns:
- binary logarithm of the specified
Numeral
- Throws:
ArithmeticException
- if theNumeral
is zero or negativeNullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
log10
Calculates the base 10 logarithm of aNumeral
.- Parameters:
numeral
-Numeral
to be calculated- Returns:
- base 10 logarithm of the specified
Numeral
- Throws:
ArithmeticException
- if theNumeral
is zero or negativeNullPointerException
- if theNumeral
returnsnull
forNumeral.getType()
IllegalArgumentException
- if theNumeral
does not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
logN
Calculates the logarithm aNumeral
in the base of another Numeral. The Numeral parameters are converted to the most significant type withNumerals.getSignificantType(NumeralType...)
. Additionally, the resulting Numeral will be converted to a higher type if the logarithm would result in an overflow or underflow.- Parameters:
numeral
-Numeral
to be calculatedbase
- base of the logarithm- Returns:
- result of the logarithm
- Throws:
ArithmeticException
- if theNumeral
is zero or negative, if the base is zero or negative, or if the base is oneNullPointerException
- if any of theNumerals
returnnull
forNumeral.getType()
IllegalArgumentException
- if any of theNumerals
do not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
min
Returns the minimum of twoNumerals
, that is, the Numeral that represents a lesser number. If the Numerals represent the same number, the first Numeral is returned- Parameters:
numeral
-Numeral
to compareother
-Numeral
to compare- Returns:
- the lesser of the specified
Numerals
- Throws:
NullPointerException
- if any of theNumerals
returnnull
forNumeral.getType()
IllegalArgumentException
- if any of theNumerals
do not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
max
Returns the maximum of twoNumerals
, that is, the Numeral that represents a greater number. If the Numerals represent the same number, the first Numeral is returned- Parameters:
numeral
-Numeral
to compareother
-Numeral
to compare- Returns:
- the greater of the specified
Numerals
- Throws:
NullPointerException
- if any of theNumerals
returnnull
forNumeral.getType()
IllegalArgumentException
- if any of theNumerals
do not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
lerp
Linearly interpolates aNumeral
based on a minimum and maximum numeral. The mathematical formula for the operation isnumeral * (max - min) + min
. Values smaller than zero and greater than one are allowed.- Parameters:
numeral
-Numeral
to be interpolatedmin
- minimum valuemax
- maximum value- Returns:
- result of the linear interpolation
- Throws:
NullPointerException
- if any of theNumerals
returnnull
forNumeral.getType()
IllegalArgumentException
- if any of theNumerals
do not returnnull
forNumeral.getType()
, but the value is not recognised as any of the elements ofNumeralType
. This should never happen
-
add
- Parameters:
augend
- augendaddend
- addend- Returns:
- result of the addition
-
add
- Parameters:
augend
- augendaddend
- addend- Returns:
- result of the addition
-
add
- Parameters:
augend
- augendaddend
- addend- Returns:
- result of the addition
-
add
- Parameters:
augend
- augendaddend
- addend- Returns:
- result of the addition
-
add
- Parameters:
augend
- augendaddend
- addend- Returns:
- result of the addition
-
add
- Parameters:
augend
- augendaddend
- addend- Returns:
- result of the addition
-
subtract
- Parameters:
minuend
- minuendsubtrahend
- subtrahend- Returns:
- result of the subtraction
-
subtract
- Parameters:
minuend
- minuendsubtrahend
- subtrahend- Returns:
- result of the subtraction
-
subtract
- Parameters:
minuend
- minuendsubtrahend
- subtrahend- Returns:
- result of the subtraction
-
subtract
- Parameters:
minuend
- minuendsubtrahend
- subtrahend- Returns:
- result of the subtraction
-
subtract
- Parameters:
minuend
- minuendsubtrahend
- subtrahend- Returns:
- result of the subtraction
-
subtract
- Parameters:
minuend
- minuendsubtrahend
- subtrahend- Returns:
- result of the subtraction
-
multiply
- Parameters:
multiplicand
- multiplicandmultiplier
- multiplier- Returns:
- result of the multiplication
-
multiply
- Parameters:
multiplicand
- multiplicandmultiplier
- multiplier- Returns:
- result of the multiplication
-
multiply
- Parameters:
multiplicand
- multiplicandmultiplier
- multiplier- Returns:
- result of the multiplication
-
multiply
- Parameters:
multiplicand
- multiplicandmultiplier
- multiplier- Returns:
- result of the multiplication
-
multiply
- Parameters:
multiplicand
- multiplicandmultiplier
- multiplier- Returns:
- result of the multiplication
-
multiply
- Parameters:
multiplicand
- multiplicandmultiplier
- multiplier- Returns:
- result of the multiplication
-
divide
- Parameters:
dividend
- dividenddivisor
- divisor- Returns:
- result of the division
-
divide
- Parameters:
dividend
- dividenddivisor
- divisor- Returns:
- result of the division
-
divide
- Parameters:
dividend
- dividenddivisor
- divisor- Returns:
- result of the division
-
divide
- Parameters:
dividend
- dividenddivisor
- divisor- Returns:
- result of the division
-
divide
- Parameters:
dividend
- dividenddivisor
- divisor- Returns:
- result of the division
-
divide
- Parameters:
dividend
- dividenddivisor
- divisor- Returns:
- result of the division
-
power
- Parameters:
base
- baseexponent
- exponent- Returns:
- result of the exponentiation
-
power
- Parameters:
base
- baseexponent
- exponent- Returns:
- result of the exponentiation
-
power
- Parameters:
base
- baseexponent
- exponent- Returns:
- result of the exponentiation
-
power
- Parameters:
base
- baseexponent
- exponent- Returns:
- result of the exponentiation
-
power
- Parameters:
base
- baseexponent
- exponent- Returns:
- result of the exponentiation
-
power
- Parameters:
base
- baseexponent
- exponent- Returns:
- result of the exponentiation
-
exp
- Parameters:
value
- value- Returns:
- natural exponent of the value
-
exp
- Parameters:
value
- value- Returns:
- natural exponent of the value
-
exp
- Parameters:
value
- exponent- Returns:
- natural exponent of value
-
exp
- Parameters:
value
- value- Returns:
- natural exponent of the value
-
exp
- Parameters:
value
- value- Returns:
- natural exponent of the value
-
exp
- Parameters:
value
- value- Returns:
- natural exponent of the value
-
sqrt
- Parameters:
value
- value- Returns:
- square root of value
-
sqrt
- Parameters:
value
- value- Returns:
- square root of value
-
sqrt
- Parameters:
value
- value- Returns:
- square root of value
-
sqrt
- Parameters:
value
- value- Returns:
- square root of value
-
sqrt
- Parameters:
value
- value- Returns:
- square root of value
-
sqrt
- Parameters:
value
- value- Returns:
- square root of value
-
cbrt
- Parameters:
value
- value- Returns:
- cube root of value
-
cbrt
- Parameters:
value
- value- Returns:
- cube root of value
-
cbrt
- Parameters:
value
- value- Returns:
- cube root of value
-
cbrt
- Parameters:
value
- value- Returns:
- cube root of value
-
cbrt
- Parameters:
value
- value- Returns:
- cube root of value
-
cbrt
- Parameters:
value
- value- Returns:
- cube root of value
-
root
- Parameters:
value
- valuebase
- base of the root- Returns:
- root of the value in the specified base
-
root
- Parameters:
value
- valuebase
- base of the root- Returns:
- root of the value in the specified base
-
root
- Parameters:
value
- valuebase
- base of the root- Returns:
- root of the value in the specified base
-
root
- Parameters:
value
- valuebase
- base of the root- Returns:
- root of the value in the specified base
-
root
- Parameters:
value
- valuebase
- base of the root- Returns:
- root of the value in the specified base
-
root
- Parameters:
value
- valuebase
- base of the root- Returns:
- root of the value in the specified base
-
log
- Parameters:
value
- value- Returns:
- natural logarithm of the value
-
log
- Parameters:
value
- value- Returns:
- natural logarithm of the value
-
log
- Parameters:
value
- value- Returns:
- natural logarithm of the value
-
log
- Parameters:
value
- value- Returns:
- natural logarithm of the value
-
log
- Parameters:
value
- value- Returns:
- natural logarithm of the value
-
log
- Parameters:
value
- value- Returns:
- natural logarithm of the value
-
log2
- Parameters:
value
- value- Returns:
- binary logarithm of the value
-
log2
- Parameters:
value
- value- Returns:
- binary logarithm of the value
-
log2
- Parameters:
value
- value- Returns:
- binary logarithm of the value
-
log2
- Parameters:
value
- value- Returns:
- binary logarithm of the value
-
log2
- Parameters:
value
- value- Returns:
- binary logarithm of the value
-
log2
- Parameters:
value
- value- Returns:
- binary logarithm of the value
-
log10
- Parameters:
value
- value- Returns:
- base 10 logarithm of the value
-
log10
- Parameters:
value
- value- Returns:
- base 10 logarithm of the value
-
log10
- Parameters:
value
- value- Returns:
- base 10 logarithm of the value
-
log10
- Parameters:
value
- value- Returns:
- base 10 logarithm of the value
-
log10
- Parameters:
value
- value- Returns:
- base 10 logarithm of the value
-
log10
- Parameters:
value
- value- Returns:
- base 10 logarithm of the value
-
logN
- Parameters:
value
- valuebase
- base- Returns:
- logarithm of the value in the specified base
-
logN
- Parameters:
value
- valuebase
- base- Returns:
- logarithm of the value in the specified base
-
logN
- Parameters:
value
- valuebase
- base- Returns:
- logarithm of the value in the specified base
-
logN
- Parameters:
value
- valuebase
- base- Returns:
- logarithm of the value in the specified base
-
logN
- Parameters:
value
- valuebase
- base- Returns:
- logarithm of the value in the specified base
-
logN
- Parameters:
value
- valuebase
- base- Returns:
- logarithm of the value in the specified base
-
lerp
- Parameters:
value
- value to be interpolatedmin
- minimum valuemax
- maximum value- Returns:
- result of the linear interpolation
-
lerp
- Parameters:
value
- value to be interpolatedmin
- minimum valuemax
- maximum value- Returns:
- result of the linear interpolation
-
lerp
- Parameters:
value
- value to be interpolatedmin
- minimum valuemax
- maximum value- Returns:
- result of the linear interpolation
-
lerp
- Parameters:
value
- value to be interpolatedmin
- minimum valuemax
- maximum value- Returns:
- result of the linear interpolation
-
lerp
- Parameters:
value
- value to be interpolatedmin
- minimum valuemax
- maximum value- Returns:
- result of the linear interpolation
-
lerp
- Parameters:
value
- value to be interpolatedmin
- minimum valuemax
- maximum value- Returns:
- result of the linear interpolation
-