boost::accumulators 用法学习
2018-06-17 22:20:49来源:未知 阅读 ()
1 #include <iostream> 2 #include <boost/accumulators/accumulators.hpp> 3 #include <boost/accumulators/statistics/stats.hpp> 4 #include <boost/accumulators/statistics/mean.hpp> 5 #include <boost/accumulators/statistics/moment.hpp> 6 using namespace boost::accumulators; 7 8 int main() 9 { 10 // Define an accumulator set for calculating the mean and the 11 // 2nd moment ... 12 accumulator_set<double, stats<tag::mean, tag::moment<2> > > acc;//创建对象 13 14 // push in some data ... 15 acc(1.2); 16 acc(2.3); 17 acc(3.4); 18 acc(4.5); 19 20 // Display the results ... 21 std::cout << "Mean: " << mean(acc) << std::endl; 22 std::cout << "Moment: " << accumulators::moment<2>(acc) << std::endl; 23 24 return 0; 25 }
运行结果:
Mean: 2.85 Moment: 9.635
计算步骤:
1 acc(1.2);// 1.2 2 acc(2.3);// + 2.3 3 acc(3.4);// + 3.4 4 acc(4.5);// + 4.5 5 // -------- 6 // 11.4/4=2.85(mean) 7 acc(1.2);// 1.2^2 8 acc(2.3);// + 2.3^2 9 acc(3.4);// + 3.4^2 10 acc(4.5);// + 4.5^2 11 // -------- 12 // 38.54/4=2.85(moment)
总结:accumulators用于增量统计的库,也是一个用于增量计算的可扩展的累加器框架。还有很多有用的函数,可以参见reference。
Reference:http://www.boost.org/doc/libs/1_64_0/doc/html/accumulators/user_s_guide.html#accumulators.user_s_guide.the_accumulators_framework.extending_the_accumulators_framework
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- C++ 单独编译 2020-05-10
- 面试前必须要知道的C++ const用法 2020-03-10
- Boost C++ 库 中文教程(全) 2019-12-19
- C++中的const的简单用法 2019-09-08
- typedef用法和陷阱 2019-09-02
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash