MathEx-Java is a Java Math library supporting big numbers by Robert Lude.
MathEx-Java aims to provide accurate implementations of useful mathematical concepts to Java.
At your project source root, type
git submodule add [email protected]:robertlude/MathEx-Java.git de/ertlu/rob/MathEx
BigNewtonRaphsonMethod- A Newton-Raphson method wrapperNthRoot- Nth root finderLogarithm- Natural logarithm finder
BigPowerSeries- A power series wrapperExponential- Calculates exponential function
BigRational- Rational wrapper that can approximate to any desired positionMathEx- Miscellaneous functionsequalsfactoriallnlogmaxminraisereciprocal
v0.2.3
- Added clamp functions for types
byte,char,short,int,long,float,double,BigIntegerandBigDecimal - Made
MathExfinal
v0.2.2
- Added min/max BigDecimal functions to MathEx
v0.2.1
- Made
BigNewtonRaphsonMethod.NthRootandBigNewtonRaphsonMethod.Logarithmthread-safe
v0.2.0
- Added convenience functions and constants
v0.1.0
- Implemented
BigNewtonRaphsonMethod,BigPowerSeries, andBigRational