翻译源址:http://commons.apache.org/proper/commons-math/userguide/index.html
1、math包版本3.6
2、commons-math包解决哪些问题
math包由一组数据和统计的包组成,用于解决列表中列出的问题。列表虽不能覆盖math包全部的功能,但可以基本说明math包所能提供的方法。
- 计算一组数据的均值、方差,还有其他统计类指标。
- 使用线性回归将线拟合到一组数据点
- 将曲线拟合到一组数据点
- 找到通过点集合的平滑曲线(插值)
- 使用最小二乘法将参数模型拟合到一组测量
- 求解涉及实值函数的方程(即根查找)
- 求解线性方程组
- 求解常微分方程
- 最小化多维函数
- 生成具有比使用JDK的可能性更多的限制(例如分布,范围)的随机数
- 生成跟输入文件中的数据相似的随机样本或数据集
- 统计检验
- 其他数学函数如阶乘,二项式系数和“特殊函数”(例如伽马,β函数)
3、commons-math包讲解
- org.apache.commons.math3.analysis---根查找,积分,插值,多项式
- org.apache.commons.math3.complex---复数
- org.apache.commons.math3.dfp---十进制浮点数
- org.apache.commons.math3.distribution---概率分布
- org.apache.commons.math3.fitting---曲线拟合
- org.apache.commons.math3.fraction---有理数
- org.apache.commons.math3.genetics---遗传算法
- org.apache.commons.math3.geometry---何(欧几里德空间和二进制空间分区)
- org.apache.commons.math3.linear---矩阵,求解线性系统
- org.apache.commons.math3.ml---机器学习
- org.apache.commons.math3.ode---普通微分方程积分
- org.apache.commons.math3.optim---函数最大化还是最小化
- org.apache.commons.math3.random---随机数,字符串和数据生成
- org.apache.commons.math3.special---特殊函数(Gamma,Beta)
- org.apache.commons.math3.stat---统计,统计检验
- org.apache.commons.math3.transform---变换(傅立叶)
- org.apache.commons.math3.util---通用数据或统计函数