1
2
3
4
5
6
7
8
9
10
/// 数学计算
pub mod maths;
/// 移动平均算法
pub mod ma;
/// 统计学算法
pub mod stats;
/// 过程控制算法
pub mod process;
/// SPC推移图
pub mod spc;