<small id='zQIri'></small><noframes id='zQIri'>

  1. <i id='zQIri'><tr id='zQIri'><dt id='zQIri'><q id='zQIri'><span id='zQIri'><b id='zQIri'><form id='zQIri'><ins id='zQIri'></ins><ul id='zQIri'></ul><sub id='zQIri'></sub></form><legend id='zQIri'></legend><bdo id='zQIri'><pre id='zQIri'><center id='zQIri'></center></pre></bdo></b><th id='zQIri'></th></span></q></dt></tr></i><div id='zQIri'><tfoot id='zQIri'></tfoot><dl id='zQIri'><fieldset id='zQIri'></fieldset></dl></div>

    1. <legend id='zQIri'><style id='zQIri'><dir id='zQIri'><q id='zQIri'></q></dir></style></legend>
        <bdo id='zQIri'></bdo><ul id='zQIri'></ul>
      <tfoot id='zQIri'></tfoot>

      使用 Boost 计算 C++ 中样本向量的均值和标准差

      Calculate mean and standard deviation from a vector of samples in C++ using Boost(使用 Boost 计算 C++ 中样本向量的均值和标准差)

          <legend id='InFBI'><style id='InFBI'><dir id='InFBI'><q id='InFBI'></q></dir></style></legend>

          • <small id='InFBI'></small><noframes id='InFBI'>

          • <i id='InFBI'><tr id='InFBI'><dt id='InFBI'><q id='InFBI'><span id='InFBI'><b id='InFBI'><form id='InFBI'><ins id='InFBI'></ins><ul id='InFBI'></ul><sub id='InFBI'></sub></form><legend id='InFBI'></legend><bdo id='InFBI'><pre id='InFBI'><center id='InFBI'></center></pre></bdo></b><th id='InFBI'></th></span></q></dt></tr></i><div id='InFBI'><tfoot id='InFBI'></tfoot><dl id='InFBI'><fieldset id='InFBI'></fieldset></dl></div>

              <tbody id='InFBI'></tbody>
            <tfoot id='InFBI'></tfoot>
                <bdo id='InFBI'></bdo><ul id='InFBI'></ul>
              • 本文介绍了使用 Boost 计算 C++ 中样本向量的均值和标准差的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                有没有办法使用 提升?

                还是我必须创建一个累加器并将向量输入其中?

                Or do I have to create an accumulator and feed the vector into it?

                推荐答案

                使用累加器在 提升.

                accumulator_set<double, stats<tag::variance> > acc;
                for_each(a_vec.begin(), a_vec.end(), bind<void>(ref(acc), _1));
                
                cout << mean(acc) << endl;
                cout << sqrt(variance(acc)) << endl;
                

                 

                这篇关于使用 Boost 计算 C++ 中样本向量的均值和标准差的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                How to limit the number of running instances in C++(C++中如何限制运行实例的数量)
                Using boost::asio::async_read with stdin?(将 boost::asio::async_read 与 stdin 一起使用?)
                How to find out what dependencies (i.e other Boost libraries) a particular Boost library requires?(如何找出特定 Boost 库需要哪些依赖项(即其他 Boost 库)?)
                What#39;s the purpose of a leading quot;::quot; in a C++ method call(引导“::的目的是什么?在 C++ 方法调用中)
                Boost Spirit x3: parse into structs(Boost Spirit x3:解析为结构体)
                How boost auto-linking makes choice?(boost自动链接如何做出选择?)

                    <bdo id='2ZFq3'></bdo><ul id='2ZFq3'></ul>
                  • <i id='2ZFq3'><tr id='2ZFq3'><dt id='2ZFq3'><q id='2ZFq3'><span id='2ZFq3'><b id='2ZFq3'><form id='2ZFq3'><ins id='2ZFq3'></ins><ul id='2ZFq3'></ul><sub id='2ZFq3'></sub></form><legend id='2ZFq3'></legend><bdo id='2ZFq3'><pre id='2ZFq3'><center id='2ZFq3'></center></pre></bdo></b><th id='2ZFq3'></th></span></q></dt></tr></i><div id='2ZFq3'><tfoot id='2ZFq3'></tfoot><dl id='2ZFq3'><fieldset id='2ZFq3'></fieldset></dl></div>

                      <small id='2ZFq3'></small><noframes id='2ZFq3'>

                          <tbody id='2ZFq3'></tbody>
                        <legend id='2ZFq3'><style id='2ZFq3'><dir id='2ZFq3'><q id='2ZFq3'></q></dir></style></legend>

                          <tfoot id='2ZFq3'></tfoot>