Imported Upstream version 1.57.0
[platform/upstream/boost.git] / doc / html / accumulators.html
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
4 <title>Chapter&#160;1.&#160;Boost.Accumulators</title>
5 <link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css">
6 <meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
7 <link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
8 <link rel="up" href="libraries.html" title="Part&#160;I.&#160;The Boost C++ Libraries (BoostBook Subset)">
9 <link rel="prev" href="libraries.html" title="Part&#160;I.&#160;The Boost C++ Libraries (BoostBook Subset)">
10 <link rel="next" href="accumulators/user_s_guide.html" title="User's Guide">
11 </head>
12 <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
13 <table cellpadding="2" width="100%"><tr>
14 <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../boost.png"></td>
15 <td align="center"><a href="../../index.html">Home</a></td>
16 <td align="center"><a href="../../libs/libraries.htm">Libraries</a></td>
17 <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
18 <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
19 <td align="center"><a href="../../more/index.htm">More</a></td>
20 </tr></table>
21 <hr>
22 <div class="spirit-nav">
23 <a accesskey="p" href="libraries.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.html"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="accumulators/user_s_guide.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
24 </div>
25 <div class="chapter">
26 <div class="titlepage"><div>
27 <div><h2 class="title">
28 <a name="accumulators"></a>Chapter&#160;1.&#160;Boost.Accumulators</h2></div>
29 <div><div class="author"><h3 class="author">
30 <span class="firstname">Eric</span> <span class="surname">Niebler</span>
31 </h3></div></div>
32 <div><p class="copyright">Copyright &#169; 2005, 2006 Eric Niebler</p></div>
33 <div><div class="legalnotice">
34 <a name="accumulators.legal"></a><p>
35         Distributed under the Boost Software License, Version 1.0. (See accompanying
36         file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
37       </p>
38 </div></div>
39 </div></div>
40 <div class="toc">
41 <p><b>Table of Contents</b></p>
42 <dl class="toc">
43 <dt><span class="section"><a href="accumulators.html#accumulators.preface">Preface</a></span></dt>
44 <dt><span class="section"><a href="accumulators/user_s_guide.html">User's Guide</a></span></dt>
45 <dd><dl>
46 <dt><span class="section"><a href="accumulators/user_s_guide.html#accumulators.user_s_guide.the_accumulators_framework">The
47       Accumulators Framework</a></span></dt>
48 <dt><span class="section"><a href="accumulators/user_s_guide.html#accumulators.user_s_guide.the_statistical_accumulators_library">The
49       Statistical Accumulators Library</a></span></dt>
50 </dl></dd>
51 <dt><span class="section"><a href="accumulators/acknowledgements.html">Acknowledgements</a></span></dt>
52 <dt><span class="section"><a href="accumulators/reference.html">Reference</a></span></dt>
53 <dd><dl>
54 <dt><span class="section"><a href="accumulators/reference.html#accumulators_framework_reference">Accumulators Framework Reference</a></span></dt>
55 <dt><span class="section"><a href="accumulators/reference.html#statistics_library_reference">Statistics Library Reference</a></span></dt>
56 <dt><span class="section"><a href="accumulators/reference.html#numeric_operators_library_reference">Numeric Operators Library Reference</a></span></dt>
57 </dl></dd>
58 </dl>
59 </div>
60 <div class="section">
61 <div class="titlepage"><div><div><h2 class="title" style="clear: both">
62 <a name="accumulators.preface"></a><a class="link" href="accumulators.html#accumulators.preface" title="Preface">Preface</a>
63 </h2></div></div></div>
64 <div class="blockquote"><blockquote class="blockquote"><p>
65         <span class="quote">&#8220;<span class="quote">It is better to be approximately right than exactly wrong.</span>&#8221;</span><br>
66         <span class="emphasis"><em>-- Old adage</em></span>
67       </p></blockquote></div>
68 <h3>
69 <a name="accumulators.preface.h0"></a>
70       <span class="phrase"><a name="accumulators.preface.description"></a></span><a class="link" href="accumulators.html#accumulators.preface.description">Description</a>
71     </h3>
72 <p>
73       Boost.Accumulators is both a library for incremental statistical computation
74       as well as an extensible framework for incremental calculation in general.
75       The library deals primarily with the concept of an <span class="emphasis"><em>accumulator</em></span>,
76       which is a primitive computational entity that accepts data one sample at a
77       time and maintains some internal state. These accumulators may offload some
78       of their computations on other accumulators, on which they depend. Accumulators
79       are grouped within an <span class="emphasis"><em>accumulator set</em></span>. Boost.Accumulators
80       resolves the inter-dependencies between accumulators in a set and ensures that
81       accumulators are processed in the proper order.
82     </p>
83 </div>
84 </div>
85 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
86 <td align="left"><p><small>Last revised: October 30, 2014 at 10:17:34 GMT</small></p></td>
87 <td align="right"><div class="copyright-footer"></div></td>
88 </tr></table>
89 <hr>
90 <div class="spirit-nav">
91 <a accesskey="p" href="libraries.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="libraries.html"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="accumulators/user_s_guide.html"><img src="../../doc/src/images/next.png" alt="Next"></a>
92 </div>
93 </body>
94 </html>