Swift51.com
Swift 头像
Swift  2016-07-12 20:44

Swift 统计计算类库 SigmaSwiftStatistics

回复:0  查看:4338  感兴趣:11  赞:0  

SigmaSwiftStatistics 是用 Swift 编写的统计计算类库,提供了一些统计计算的函数,包括求和、取平均数、取最大数等函数。

示例代码:

//取数组中最大的值
Sigma.max([1, 8, 3])
// Result: 8

//取数组中最小的值
Sigma.min([7, 2, 3])
// Result: 2

//求和
Sigma.sum([1, 3, 8])
// Result: 12

//取平均数
Sigma.average([1, 3, 8])
// Result: 4

相关开源代码