Package Name | Comment |
org.apache.commons.math |
Common classes used throughout the commons-math library.
|
org.apache.commons.math.analysis |
Implementations of common numerical analysis procedures, including root finding and function interpolation.
|
org.apache.commons.math.complex |
Complex number type and implementations of complex transcendental
functions.
|
org.apache.commons.math.distribution |
Implementations of common discrete and continuous distributions.
|
org.apache.commons.math.fraction |
Fraction number type and fraction number formatting.
|
org.apache.commons.math.linear |
Linear algebra support.
|
org.apache.commons.math.random |
Random number and random data generators.
|
org.apache.commons.math.special |
Implementations of special functions such as Beta and Gamma.
|
org.apache.commons.math.stat |
Data storage, manipulation and summary routines.
|
org.apache.commons.math.stat.data | |
org.apache.commons.math.stat.descriptive |
Generic univariate summary statistic objects.
UnivariateStatistic API Usage Examples:
UnivariateStatistic:
/* evaluation approach */ double[] values = new double[] { 1, 2,
3, 4, 5 }; UnivariateStatistic stat
= new Mean(); System.out.println("mean = " + stat.evaluate(values));
StorelessUnivariateStatistic:
/* incremental approach */ double[] values = new double[] { 1, 2,
3, 4, 5 };
StorelessUnivariateStatistic stat = new Mean();
System.out.println("mean before adding a value is NaN = " + stat.getResult()); for (int i = 0;
i < values.length; i++) { stat.increment(values[i]);
System.out.println("current mean = " +
stat2.getResult()); }
stat.clear(); System.out.println("mean after clear is NaN = "
+ stat.getResult());
|
org.apache.commons.math.stat.descriptive.moment |
Summary statistics based on moments.
|
org.apache.commons.math.stat.descriptive.rank |
Summary statistics based on ranks.
|
org.apache.commons.math.stat.descriptive.summary |
Other summary statistics.
|
org.apache.commons.math.stat.inference |
Classes providing hypothesis testing and confidence interval
construction.
|
org.apache.commons.math.stat.regression |
Statistical routines involving multivariate data.
|
org.apache.commons.math.util |
Convenience routines and common data structures used throughout the commons-math library.
|