Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / math / doc / math.qbk
1 [book Math Toolkit
2     [quickbook 1.7]
3     [copyright 2006-2019 Nikhar Agrawal, Anton Bikineev, Paul A. Bristow, Marco Guazzone, Christopher Kormanyos, Hubert Holin, Bruno Lalande, John Maddock, Jeremy Murphy, Matthew Pulver, Johan Råde, Gautam Sewani, Benjamin Sobotta, Nicholas Thompson, Thijs van den Berg, Daryle Walker and Xiaogang Zhang]
4     [/purpose ISBN 0-9504833-2-X  978-0-9504833-2-0, Classification 519.2-dc22]
5     [license
6         Distributed under the Boost Software License, Version 1.0.
7         (See accompanying file LICENSE_1_0.txt or copy at
8         [@http://www.boost.org/LICENSE_1_0.txt])
9     ]
10     [authors [Agrawal, Nikhar], [Bikineev, Anton], [Bristow, Paul A.], [Holin, Hubert], [Guazzone, Marco], [Kormanyos, Christopher], [Lalande, Bruno], [Maddock, John], [Murphy, Jeremy W.], [Pulver, Matthew], [Råde, Johan], [Sobotta, Benjamin], [Sewani, Gautam], [Thompson, Nicholas], [van den Berg, Thijs], [Walker, Daryle], [Zhang, Xiaogang]]
11     [/last-revision $Date$]
12     [version 2.11.0]
13 ]
14
15 [template mathpart[id title]
16 [block '''<chapter id="'''[id]'''"><title>'''[title]'''</title>''']]
17 [template endmathpart[]
18 [block '''</chapter>''']]
19
20 [/insert Equation as an image, previous generated with an external tool like Latex.]
21 [template equation[name]
22 [:
23 '''<inlinemediaobject>
24 <imageobject role="html">
25 <imagedata fileref="../equations/'''[name]'''.svg"></imagedata>
26 </imageobject>
27 <imageobject role="print">
28 <imagedata fileref="../equations/'''[name]'''.svg"></imagedata>
29 </imageobject>
30 </inlinemediaobject>'''
31 ]
32 ]
33
34 [/Used thus [equation ellint6] ]
35
36 [/insert Graph as an SVG or PNG image, previous generated with an external tool like SVG_plot.]
37
38 [template graph[name]
39 [:
40 '''<inlinemediaobject>
41 <imageobject role="html">
42 <imagedata align="center" fileref="../graphs/'''[name]'''.svg"></imagedata>
43 </imageobject>
44 <imageobject role="print">
45 <imagedata align="center" fileref="../graphs/'''[name]'''.svg"></imagedata>
46 </imageobject>
47 </inlinemediaobject>'''
48 ]
49 ]
50
51 [/insert Indented one-line expression italic and serif font probably using Unicode symbols for Greek and symbols.]
52 [/Example: [expression [sub 1]F[sub 0](a, z) = (1-z)[super -a]]]
53 [template expression[equation]
54 [:
55 [role serif_italic [equation]]
56 ]
57 [/ Hint you may need to enclose equation in brackets if it contains comma(s) to avoid "error invalid number of arguments"]
58 ]
59
60 [import ../../../tools/auto_index/include/auto_index_helpers.qbk]
61 [/ Must be first included file!]
62
63 [import ../reporting/accuracy/doc/accuracy_tables.qbk]
64 [import ../reporting/performance/doc/performance_tables.qbk]
65
66 [import html4_symbols.qbk]
67
68 [import overview/common_overviews.qbk] [/ overviews that appear in more than one place!]
69 [import overview/tr1.qbk] [/tr1 docs also appear in more than one place!]
70 [import overview/roadmap.qbk] [/ for history]
71
72 [def __build_html]
73
74 [def __effects [*Effects: ]]
75 [def __formula [*Formula: ]]
76 [def __exm1 '''<code>e<superscript>x</superscript> - 1</code>'''] [/e^x -1]
77 [def __ex '''<code>e<superscript>x</superscript></code>'''] [/e^x]
78 [def __te '''2&#x025B;''']  [/small Latin letter open e]
79
80 [/These should be in html4_symbols.qbk]
81 [def __ceilR '''&#x2309;''']
82 [def __ceilL '''&#2308;''']
83 [def __floorR '''&#x230B;''']
84 [def __floorL '''&#x230A;''']
85 [def __infin '''&#8734;''']
86 [def __integral '''&#8747;''']
87 [def __aacute '''&#225;''']
88 [def __eacute '''&#233;''']
89 [def __quarter '''&#x00BC;''']
90 [def __nearequal '''&#x224A;''']
91 [def __spaces '''&#x2000;&#x2000;'''] [/ two spaces - useful for an indent.]
92
93 [def __tick [role aligncenter [role green \u2714]]] [/ u2714 is a HEAVY CHECK MARK tick (2713 check mark)]
94 [def __cross [role aligncenter [role red \u2718]]] [/ u2718 is a heavy cross]
95 [def __star [role aligncenter [role red \u2736]]] [/ 6-point star]
96
97 [def __caution This is now an official Boost library, but remains a library under
98                development, the code is fully functional and robust, but
99                interfaces, library structure, and function and distribution names
100                may still be changed without notice.]
101
102 [template tr1[] [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2005/n1836.pdf Technical Report on C++ Library Extensions]]
103 [template C99[] [@http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf C99 Standard ISO/IEC 9899:1999]]
104 [template jm_rationals[] [link math_toolkit.sf_implementation.rational_approximations_used devised by JM]]
105
106 [def __domain_error [link math_toolkit.error_handling.domain_error domain_error]]
107 [def __pole_error [link math_toolkit.error_handling.pole_error pole_error]]
108 [def __overflow_error [link math_toolkit.error_handling.overflow_error overflow_error]]
109 [def __underflow_error [link math_toolkit.error_handling.underflow_error underflow_error]]
110 [def __denorm_error [link math_toolkit.error_handling.denorm_error denorm_error]]
111 [def __evaluation_error [link math_toolkit.error_handling.evaluation_error evaluation_error]]
112 [def __rounding_error [link math_toolkit.error_handling.rounding_error rounding_error]]
113 [def __indeterminate_result_error [link math_toolkit.error_handling.indeterminate_result_error indeterminate_result_error]]
114 [def __checked_narrowing_cast [link math_toolkit.error_handling.checked_narrowing_cast checked_narrowing_cast]]
115 [def __arg_promotion_rules [link math_toolkit.result_type ['result type calculation rules]]]
116 [def __sf_result [link math_toolkit.result_type ['calculated-result-type]]]
117
118 [/ The following macros expand to links to the various special functions
119 and use the function's name as the link text.]
120
121 [/Misc]
122 [def __lanczos [link math_toolkit.lanczos Lanczos approximation]]
123 [def __zero_error [link math_toolkit.relative_error.zero_error effectively zero error]]
124 [def __relative_error [link math_toolkit.relative_error relative zero error]]
125
126 [/ links to roots]
127
128 [def __root_finding_with_derivatives [link math_toolkit.roots_deriv root-finding with derivatives]] [/Newton, Halley & Schoeder]
129 [def __root_finding_without_derivatives [link math_toolkit.roots_noderiv root-finding without derivatives]]
130 [def __root_finding_TOMS748 [link math_toolkit.roots_noderiv.TOMS748 TOMS 748 algorithm]]
131 [def __bracket_solve [link math_toolkit.roots_noderiv.bracket_solve bracket and solve]]
132 [def __root_termination [link math_toolkit.roots_noderiv.root_termination predefined termination functors]]
133 [def __root_finding_examples [link math_toolkit.root_finding_examples root-finding examples]]
134 [def __brent_minima [link math_toolkit.brent_minima Brent's method]]
135 [def __brent_minima_example [link math_toolkit.brent_minima.example Brent's method example]]
136 [def __newton[link math_toolkit.roots_deriv.newton Newton-Raphson iteration]]
137 [def __halley [link math_toolkit.roots_deriv.halley Halley]]
138 [def __schroder [link math_toolkit.roots_deriv.schroder Schr'''&#xf6;'''der]]
139 [def __brent_minima_example [link math_toolkit.brent_minima.example Brent minima finding example]]
140 [def __bisection [link math_toolkit.roots_noderiv.bisect bisection]]
141 [def __bisect [link math_toolkit.roots_noderiv.bisect bisect]]
142 [def __bisection_wikipedia [@https://en.wikipedia.org/wiki/Bisection bisection]]
143 [def __root_finding_example_without_derivatives [link math_toolkit.root_finding_examples.no_derivatives root-finding without derivatives]]
144 [def __root_finding_example_cbrt_without_derivatives [link math_toolkit.root_finding_examples.cbrt_eg.cbrt_no_derivatives root-finding without derivatives]]
145 [def __root_finding_example_cbrt_with_1_derivative [link math_toolkit.root_finding_examples.cbrt_eg.cbrt_1st_derivative root-finding with 1st derivatives]]
146 [def __root_finding_example_cbrt_with_2_derivatives [link math_toolkit.root_finding_examples.cbrt_eg.cbrt_2_derivatives root-finding with 1st and 2nd derivatives]]
147 [def __root_finding_examples [link math_toolkit.root_finding_examples root-finding examples]]
148 [def __no_derivatives   [link math_toolkit.root_finding_examples.no_derivatives no derivatives]]
149 [def __cbrt_no_derivatives  [link math_toolkit.root_finding_examples.cbrt_no_derivatives cbrt no derivatives]]
150 [def __cbrt_no_derivatives [link math_toolkit.root_finding_examples.cbrt_eg.cbrt_no_derivatives without derivatives]]
151 [def __cbrt_1st_derivative [link math_toolkit.root_finding_examples.cbrt_eg.cbrt_1st_derivative cube-root with 1st derivative]]
152 [def __cbrt_2_derivatives [link math_toolkit..root_finding_examples.cbrt_eg.cbrt_2_derivatives cube-root with 1st  & 2nd derivative]]
153 [def __fifth_root [link math_toolkit.root_finding_examples.5th_root_eg fifth root]]
154 [def __nth_root [link math_toolkit.root_finding_examples.nth_root nth root]]
155 [def __multiprecision_root [link math_toolkit.root_finding_examples.multiprecision_root multiprecision root]]
156 [def __polynomial_arithmetic [link math_toolkit.polynomial_arithmetic polynomial arithmetic]]
157 [def __evaluation [link math_toolkit.rational.polynomial_evaluation polynomial \& rational evaluation]]
158
159 [/gammas]
160 [def __lgamma [link math_toolkit.sf_gamma.lgamma lgamma]]
161 [def __digamma [link math_toolkit.sf_gamma.digamma digamma]]
162 [def __trigamma [link math_toolkit.sf_gamma.trigamma trigamma]]
163 [def __polygamma [link math_toolkit.sf_gamma.polygamma polygamma]]
164 [def __tgamma_ratio [link math_toolkit.sf_gamma.gamma_ratios tgamma_ratio]]
165 [def __tgamma_delta_ratio [link math_toolkit.sf_gamma.gamma_ratios tgamma_delta_ratio]]
166 [def __tgamma [link math_toolkit.sf_gamma.tgamma tgamma]]
167 [def __tgamma1pm1 [link math_toolkit.sf_gamma.tgamma tgamma1pm1]]
168 [def __tgamma_lower [link math_toolkit.sf_gamma.igamma tgamma_lower]]
169 [def __gamma_p [link math_toolkit.sf_gamma.igamma gamma_p]]
170 [def __gamma_q [link math_toolkit.sf_gamma.igamma gamma_q]]
171 [def __gamma_q_inv [link math_toolkit.sf_gamma.igamma_inv gamma_q_inv]]
172 [def __gamma_p_inv [link math_toolkit.sf_gamma.igamma_inv gamma_p_inv]]
173 [def __gamma_q_inva [link math_toolkit.sf_gamma.igamma_inv gamma_q_inva]]
174 [def __gamma_p_inva [link math_toolkit.sf_gamma.igamma_inv gamma_p_inva]]
175 [def __gamma_p_derivative [link math_toolkit.sf_gamma.gamma_derivatives gamma_p_derivative]]
176
177 [/factorials]
178 [def __factorial [link math_toolkit.factorials.sf_factorial factorial]]
179 [def __unchecked_factorial [link math_toolkit.factorials.sf_factorial unchecked_factorial]]
180 [def __max_factorial [link math_toolkit.factorials.sf_factorial max_factorial]]
181 [def __double_factorial [link math_toolkit.factorials.sf_double_factorial double_factorial]]
182 [def __rising_factorial [link math_toolkit.factorials.sf_rising_factorial rising_factorial]]
183 [def __falling_factorial [link math_toolkit.factorials.sf_falling_factorial falling_factorial]]
184
185 [/error functions]
186 [def __erf [link math_toolkit.sf_erf.error_function erf]]
187 [def __erfc [link math_toolkit.sf_erf.error_function erfc]]
188 [def __erf_inv [link math_toolkit.sf_erf.error_inv erf_inv]]
189 [def __erfc_inv [link math_toolkit.sf_erf.error_inv erfc_inv]]
190
191 [/beta functions]
192 [def __beta  [link math_toolkit.sf_beta.beta_function beta]]
193 [def __beta3 [link math_toolkit.sf_beta.ibeta_function beta]]
194 [def __betac [link math_toolkit.sf_beta.ibeta_function betac]]
195 [def __ibeta [link math_toolkit.sf_beta.ibeta_function ibeta]]
196 [def __ibetac [link math_toolkit.sf_beta.ibeta_function ibetac]]
197 [def __ibeta_inv [link math_toolkit.sf_beta.ibeta_inv_function ibeta_inv]]
198 [def __ibetac_inv [link math_toolkit.sf_beta.ibeta_inv_function ibetac_inv]]
199 [def __ibeta_inva [link math_toolkit.sf_beta.ibeta_inv_function ibeta_inva]]
200 [def __ibetac_inva [link math_toolkit.sf_beta.ibeta_inv_function ibetac_inva]]
201 [def __ibeta_invb [link math_toolkit.sf_beta.ibeta_inv_function ibeta_invb]]
202 [def __ibetac_invb [link math_toolkit.sf_beta.ibeta_inv_function ibetac_invb]]
203 [def __ibeta_derivative [link math_toolkit.sf_beta.beta_derivative ibeta_derivative]]
204
205 [/elliptic integrals]
206 [def __ellint_rj  [link math_toolkit.ellint.ellint_carlson ellint_rj]]
207 [def __ellint_rf  [link math_toolkit.ellint.ellint_carlson ellint_rf]]
208 [def __ellint_rc  [link math_toolkit.ellint.ellint_carlson ellint_rc]]
209 [def __ellint_rd  [link math_toolkit.ellint.ellint_carlson ellint_rd]]
210 [def __ellint_1  [link math_toolkit.ellint.ellint_1 ellint_1]]
211 [def __ellint_2  [link math_toolkit.ellint.ellint_2 ellint_2]]
212 [def __ellint_3  [link math_toolkit.ellint.ellint_3 ellint_3]]
213 [def __ellint_d  [link math_toolkit.ellint.ellint_d ellint_d]]
214 [def __jacobi_zeta  [link math_toolkit.ellint.jacobi_zeta jacobi_zeta]]
215 [def __heuman_lambda  [link math_toolkit.ellint.heuman_lambda heuman_lambda]]
216
217 [/ Bernoulli functions and numbers]
218 [def __bernoulli_numbers  [link math_toolkit.number_series.bernoulli_numbers Bernoulli numbers]]
219
220 [/Bessel functions]
221 [def __cyl_bessel_j  [link math_toolkit.bessel.bessel_first cyl_bessel_j]]
222 [def __cyl_neumann  [link math_toolkit.bessel.bessel_first cyl_neumann]]
223 [def __cyl_bessel_i  [link math_toolkit.bessel.mbessel cyl_bessel_i]]
224 [def __cyl_bessel_k  [link math_toolkit.bessel.mbessel cyl_bessel_k]]
225 [def __sph_bessel  [link math_toolkit.bessel.sph_bessel sph_bessel]]
226 [def __sph_neumann  [link math_toolkit.bessel.sph_bessel sph_neumann]]
227
228 [def __cyl_bessel_j_prime  [link math_toolkit.bessel.bessel_derivatives cyl_bessel_j_prime]]
229 [def __cyl_neumann_prime  [link math_toolkit.bessel.bessel_derivatives cyl_neumann_prime]]
230 [def __cyl_bessel_i_prime  [link math_toolkit.bessel.bessel_derivatives cyl_bessel_i_prime]]
231 [def __cyl_bessel_k_prime  [link math_toolkit.bessel.bessel_derivatives cyl_bessel_k_prime]]
232 [def __sph_bessel_prime  [link math_toolkit.bessel.bessel_derivatives sph_bessel_prime]]
233 [def __sph_neumann_prime  [link math_toolkit.bessel.bessel_derivatives sph_neumann_prime]]
234
235 [/Hankel Functions]
236 [def __cyl_hankel_1  [link math_toolkit.hankel.cyl_hankel cyl_hankel_1]]
237 [def __cyl_hankel_2  [link math_toolkit.hankel.cyl_hankel cyl_hankel_2]]
238 [def __sph_hankel_1  [link math_toolkit.hankel.sph_hankel sph_hankel_1]]
239 [def __sph_hankel_2  [link math_toolkit.hankel.sph_hankel sph_hankel_2]]
240
241 [/Lambert W function]
242 [def __lambert_w [link math_toolkit.sf_lambert_w.lambert_w_function lambert_w]]
243 [def __lambert_w_implementation [link math_toolkit.lambert_w.implementation implementation]]
244 [def __lambert_w_precision[link math_toolkit.lambert_w.precision precision]]
245 [def __lambert_w_examples [link math_toolkit.lambert_w.examples examples]]
246 [def __lambert_w_wm1_near_zero [link math_toolkit.lambert_w.wm1_near_zero wm1_near_zero]]
247 [def __lambert_w_references [link math_toolkit.lambert_w.references references]]
248
249
250 [/Airy Functions]
251 [def __airy_ai [link math_toolkit.airy.ai airy_ai]]
252 [def __airy_bi [link math_toolkit.airy.bi airy_bi]]
253 [def __airy_bi_prime [link math_toolkit.airy.bip airy_bi_prime]]
254 [def __airy_ai_prime [link math_toolkit.airy.aip airy_ai_prime]]
255
256 [/Jacobi Elliptic Functions]
257 [def __jacobi_elliptic [link math_toolkit.jacobi.jacobi_elliptic jacobi_elliptic]]
258 [def __jacobi_cd [link math_toolkit.jacobi.jacobi_cd jacobi_cd]]
259 [def __jacobi_cn [link math_toolkit.jacobi.jacobi_cn jacobi_cn]]
260 [def __jacobi_cs [link math_toolkit.jacobi.jacobi_cs jacobi_cs]]
261 [def __jacobi_dc [link math_toolkit.jacobi.jacobi_dc jacobi_dc]]
262 [def __jacobi_dn [link math_toolkit.jacobi.jacobi_dn jacobi_dn]]
263 [def __jacobi_ds [link math_toolkit.jacobi.jacobi_ds jacobi_ds]]
264 [def __jacobi_nd [link math_toolkit.jacobi.jacobi_nd jacobi_nd]]
265 [def __jacobi_nc [link math_toolkit.jacobi.jacobi_nc jacobi_nc]]
266 [def __jacobi_ns [link math_toolkit.jacobi.jacobi_ns jacobi_ns]]
267 [def __jacobi_sd [link math_toolkit.jacobi.jacobi_sd jacobi_sd]]
268 [def __jacobi_sn [link math_toolkit.jacobi.jacobi_sn jacobi_sn]]
269 [def __jacobi_sc [link math_toolkit.jacobi.jacobi_sc jacobi_sc]]
270
271 [/sinus cardinals]
272 [def __sinc_pi  [link math_toolkit.sinc.sinc_pi sinc_pi]]
273 [def __sinhc_pi  [link math_toolkit.sinc.sinhc_pi sinhc_pi]]
274
275 [/Inverse hyperbolics]
276 [def __acosh  [link math_toolkit.inv_hyper.acosh acosh]]
277 [def __asinh  [link math_toolkit.inv_hyper.asinh asinh]]
278 [def __atanh  [link math_toolkit.inv_hyper.atanh atanh]]
279
280 [/classify]
281 [def __fpclassify [link math_toolkit.fpclass fpclassify]]
282 [def __isfinite [link math_toolkit.fpclass isfinite]]
283 [def __isnan [link math_toolkit.fpclass isnan]]
284 [def __isinf [link math_toolkit.fpclass isinf]]
285 [def __isnormal [link math_toolkit.fpclass isnormal]]
286 [def __fp_facets [link math_toolkit.fp_facets nonfinite fp_facets]]
287
288 [/utils]
289 [def __float_next [link math_toolkit.next_float.float_next float_next]]
290 [def __float_prior [link math_toolkit.next_float.float_prior float_prior]]
291 [def __nextafter [link math_toolkit.next_float.nextafter nextafter]]
292 [def __float_advance [link math_toolkit.next_float.float_advance float_advance]]
293 [def __ulp [link math_toolkit.next_float.ulp ulp]]
294
295 [/powers etc]
296 [def __expm1 [link math_toolkit.powers.expm1 expm1]]
297 [def __log1p [link math_toolkit.powers.log1p log1p]]
298 [def __cbrt [link math_toolkit.powers.cbrt cbrt]]
299 [def __sqrt1pm1 [link math_toolkit.powers.sqrt1pm1 sqrt1pm1]]
300 [def __powm1 [link math_toolkit.powers.powm1 powm1]]
301 [def __hypot [link math_toolkit.powers.hypot hypot]]
302 [def __pow [link math_toolkit.powers.ct_pow pow]]
303
304 [/zeta]
305 [def __zeta [link math_toolkit.zetas.zeta zeta]]
306
307 [/expint]
308 [def __expint_i [link math_toolkit.expint.expint_i zeta]]
309 [def __expint_n [link math_toolkit.expint.expint_n zeta]]
310
311 [/rounding]
312 [def __round [link math_toolkit.rounding.round round]]
313 [def __lround [link math_toolkit.rounding.round round]]
314 [def __llround [link math_toolkit.rounding.round round]]
315 [def __trunc [link math_toolkit.rounding.trunc trunc]]
316 [def __modf [link math_toolkit.rounding.modf modf]]
317
318 [/polynomials]
319 [def __laguerre [link math_toolkit.sf_poly.laguerre laguerre]]
320 [def __legendre [link math_toolkit.sf_poly.legendre legendre_p]]
321 [def __legendre_p [link math_toolkit.sf_poly.legendre legendre_p]]
322 [def __legendre_q [link math_toolkit.sf_poly.legendre legendre_q]]
323 [def __legendre_next [link math_toolkit.sf_poly.legendre legendre_next]]
324 [def __hermite [link math_toolkit.sf_poly.hermite hermite]]
325 [def __cardinal_b_splines [link math_toolkit.sf_poly.cardinal_b_splines cardinal_b_splines]]
326
327 [/Misc]
328 [def __expint [link math_toolkit.expint.expint_i expint]]
329 [def __spherical_harmonic [link math_toolkit.sf_poly.sph_harm spherical_harmonic]]
330 [def __owens_t [link math_toolkit.owens_t Owens T]]
331 [def __constants_intro [link math_toolkit.constants_intro  constants]]
332 [def __constants[link math_toolkit.constants  constants]]
333
334 [/tools]
335 [def __tuple [link math_toolkit.internals.tuples boost::math::tuple]]
336 [def __tuple_type [link math_toolkit.internals.tuples std::pair, std::tuple, boost::tuple or boost::fusion::tuple]]
337
338 [/ distribution non-members]
339 [def __cdf [link math_toolkit.dist_ref.nmp.cdf Cumulative Distribution Function]]
340 [def __pdf [link math_toolkit.dist_ref.nmp.pdf Probability Density Function]]
341 [def __ccdf [link math_toolkit.dist_ref.nmp.ccdf Complement of the Cumulative Distribution Function]]
342 [def __quantile [link math_toolkit.dist_ref.nmp.quantile Quantile]]
343 [def __quantile_c [link math_toolkit.dist_ref.nmp.quantile_c Quantile from the complement of the probability]]
344 [def __mean [link math_toolkit.dist_ref.nmp.mean mean]]
345 [def __median [link math_toolkit.dist_ref.nmp.median median]]
346 [def __mode [link math_toolkit.dist_ref.nmp.mode mode]]
347 [def __skewness [link math_toolkit.dist_ref.nmp.skewness skewness]]
348 [def __kurtosis [link math_toolkit.dist_ref.nmp.kurtosis kurtosis]]
349 [def __kurtosis_excess [link math_toolkit.dist_ref.nmp.kurtosis_excess kurtosis_excess]]
350 [def __variance [link math_toolkit.dist_ref.nmp.variance variance]]
351 [def __sd [link math_toolkit.dist_ref.nmp.sd standard deviation]]
352 [def __hazard [link math_toolkit.dist_ref.nmp.hazard Hazard Function]]
353 [def __chf [link math_toolkit.dist_ref.nmp.chf Cumulative Hazard Function]]
354 [def __range [link math_toolkit.dist_ref.nmp.range range]]
355 [def __support [link math_toolkit.dist_ref.nmp.support support]]
356 [def __algorithms [link math_toolkit.dist_ref.dist_algorithms algorithms]]
357
358 [/ distribution def names end in distrib to avoid clashes]
359 [def __arcsine_distrib [link math_toolkit.dist_ref.dists.arcsine_dist Arcsine Distribution]]
360 [def __beta_distrib [link math_toolkit.dist_ref.dists.beta_dist Beta Distribution]]
361 [def __binomial_distrib [link math_toolkit.dist_ref.dists.binomial_dist Binomial Distribution]]
362 [def __cauchy_distrib [link math_toolkit.dist_ref.dists.cauchy_dist Cauchy Distribution]]
363 [def __chi_squared_distrib [link math_toolkit.dist_ref.dists.chi_squared_dist Chi Squared Distribution]]
364 [def __extreme_distrib [link math_toolkit.dist_ref.dists.extreme_dist Extreme Distributions]]
365 [def __exp_distrib [link math_toolkit.dist_ref.dists.exp_dist Exponential Distribution]]
366 [def __F_distrib [link math_toolkit.dist_ref.dists.f_dist Fisher F Distribution]]
367 [def __gamma_distrib [link math_toolkit.dist_ref.dists.gamma_dist Gamma Distribution]]
368 [def __geometric_distrib [link math_toolkit.dist_ref.dists.geometric_dist Geometric Distribution]]
369 [def __hyperexponential_distrib [link math_toolkit.dist_ref.dists.hyperexponential_dist Hyperexponential Distribution]]
370 [def __hypergeometric_distrib [link math_toolkit.dist_ref.dists.hypergeometric_dist hypergeometric Distribution]]
371 [def __inverse_gamma_distrib [link math_toolkit.dist_ref.dists.inverse_gamma_dist Inverse Gamma Distribution]]
372 [def __inverse_gaussian_distrib [link math_toolkit.dist_ref.dists.inverse_gaussian_dist Inverse Gaussian Distribution]]
373 [def __inverse_chi_squared_distrib [link math_toolkit.dist_ref.dists.inverse_chi_squared_dist Inverse chi squared Distribution]]
374 [def __laplace_distrib [link math_toolkit.dist_ref.dists.laplace_dist Laplace Distribution]]
375 [def __logistic_distrib [link math_toolkit.dist_ref.dists.logistic_dist Logistic Distribution]]
376 [def __lognormal_distrib [link math_toolkit.dist_ref.dists.lognormal_dist Log-normal Distribution]]
377 [def __negative_binomial_distrib [link math_toolkit.dist_ref.dists.negative_binomial_dist Negative Binomial Distribution]]
378 [def __non_central_chi_squared_distrib [link math_toolkit.dist_ref.dists.nc_chi_squared_dist Noncentral Chi Squared Distribution]]
379 [def __non_central_beta_distrib [link math_toolkit.dist_ref.dists.nc_beta_dist Noncentral Beta Distribution]]
380 [def __non_central_F_distrib [link math_toolkit.dist_ref.dists.nc_f_dist Noncentral F Distribution]]
381 [def __non_central_T_distrib [link math_toolkit.dist_ref.dists.nc_t_dist Noncentral T Distribution]]
382 [def __non_central_t_distrib [link math_toolkit.dist_ref.dists.nc_t_dist noncentral T distribution]]
383 [def __normal_distrib [link math_toolkit.dist_ref.dists.normal_dist Normal Distribution]]
384 [def __poisson_distrib [link math_toolkit.dist_ref.dists.poisson_dist Poisson Distribution]]
385 [def __pareto_distrib [link math_toolkit.dist_ref.dists.pareto Pareto Distribution]]
386 [def __students_t_distrib [link math_toolkit.dist_ref.dists.students_t_dist Students t Distribution]]
387 [def __skew_normal_distrib [link math_toolkit.dist_ref.dists.skew_normal_dist Skew Normal Distribution]]
388 [def __weibull_distrib [link math_toolkit.dist_ref.dists.weibull_dist Weibull Distribution]]
389
390 [/links to policy]
391 [def __Policy [link policy Policy]] [/ Used in distribution template specifications]
392 [def __policy_section [link policy Policies]] [/ Used in text to refer to.]
393 [def __policy_class [link math_toolkit.pol_ref.pol_ref_ref policies::policy<>]]
394 [def __math_undefined [link math_toolkit.pol_ref.assert_undefined mathematically undefined function]]
395 [def __policy_ref [link math_toolkit.pol_ref policy reference]]
396 [def __policy_tutorial [link math_toolkit.pol_tutorial policy tutorial]]
397 [def __policy_defaults [link math_toolkit.pol_tutorial.policy_tut_defaults policy defaults]]
398 [def __error_policy [link math_toolkit.pol_ref.error_handling_policies error handling policies]]
399 [def __changing_policy_defaults [link math_toolkit.pol_ref.policy_defaults changing policies defaults]]
400 [def __math_discrete [link math_toolkit.pol_ref.discrete_quant_ref discrete functions]]
401 [def __understand_dis_quant [link math_toolkit.pol_tutorial.understand_dis_quant understanding discrete quantiles]]
402 [def __user_error_handling [link math_toolkit.pol_tutorial.user_def_err_pol user error handling]]
403 [def __promotion_policy [link math_toolkit.pol_ref.internal_promotion internal promotion policy]]
404 [def __precision_policy [link math_toolkit.pol_ref.precision_pol precision policy]]
405 [def __policy_macros [link math_toolkit.pol_ref.policy_defaults Using Macros to Change the Policy Defaults]]
406
407
408 [def __usual_accessors __cdf, __pdf, __quantile, __hazard,
409    __chf, __mean, __median, __mode, __variance, __sd, __skewness,
410    __kurtosis, __kurtosis_excess, __range and __support]
411
412 [def __real_concept [link math_toolkit.real_concepts  real concept]]
413 [def __next_float [link math_toolkit.next_float Adjacent Floating-Point Values]]
414 [def __remez_practical [link math_toolkit.remez.practical remez_practical]]
415
416
417 [/ External links]
418 [def __gsl [@http://www.gnu.org/software/gsl/ GSL-1.9]]
419 [def __glibc [@http://www.gnu.org/software/libc/ GNU C Lib]]
420 [def __hpc [@http://docs.hp.com/en/B9106-90010/index.html HP-UX C Library]]
421 [def __cephes [@http://www.netlib.org/cephes/ Cephes]]
422 [def __NTL [@http://www.shoup.net/ntl/ NTL A Library for doing Number Theory]]
423 [def __NTL_RR [@http://shoup.net/ntl/doc/RR.txt NTL::RR]]
424 [def __NTL_quad_float [@http://shoup.net/ntl/doc/quad_float.txt NTL::quad_float]]
425 [def __MPFR [@http://www.mpfr.org/ GNU MPFR library]]
426 [def __GMP [@http://gmplib.org/ GNU Multiple Precision Arithmetic Library]]
427 [def __multiprecision [@boost:/libs/multiprecision/doc/html/index.html Boost.Multiprecision]]
428
429 [def __gcc_quad_type [@https://gcc.gnu.org/onlinedocs/gcc-9.1.0/libquadmath/index.html GCC 128-bit floating-point type]]
430
431 [def __cpp_dec_float [@boost:/libs/multiprecision/doc/html/boost_multiprecision/tut/floats/cpp_dec_float.html cpp_dec_float]]
432 [def __cpp_bin_float [@boost:/libs/multiprecision/doc/html/boost_multiprecision/tut/floats/cpp_bin_float.html cpp_bin_float]]
433 [/ @boost:/libs/test/doc/index.html  doesn't work for Boost.Test non-quickbook, so use instead]
434 [def __boost_test [@https://www.boost.org/doc/libs/release/libs/test/doc/html/index.html  Boost.Test]]
435 [def __boost_timer [@boost:/libs/timer/doc/index.html Boost.Timer]]
436 [def __boost_test_fp [@boost:/libs/test/doc/html/boost_test/users_guide/testing_tools/testing_floating_points.html Boost.Test floating-point comparison]]
437 [def __boost_math_fp [link math_toolkit.float_comparison Boost.Math floating-point utilities]]
438 [def __float_distance [@boost:/libs/math/doc/html/math_toolkit/next_float/float_distance.html Boost.Math float_distance]]
439 [def __ulp [@http://en.wikipedia.org/wiki/Unit_in_the_last_place  Unit in the last place (ULP)]]
440 [def __R [@http://www.r-project.org/ The R Project for Statistical Computing]]
441 [def __godfrey [link godfrey Godfrey]]
442 [def __pugh [link pugh Pugh]]
443 [def __NaN [@http://en.wikipedia.org/wiki/NaN NaN]]
444 [def __errno [@http://en.wikipedia.org/wiki/Errno `::errno`]]
445 [def __Mathworld [@http://mathworld.wolfram.com Wolfram MathWorld]]
446 [def __Mathematica [@http://www.wolfram.com/products/mathematica/index.html Wolfram Mathematica]]
447 [def __Maple [@https://www.maplesoft.com Maple]]
448 [def __WolframAlpha [@http://www.wolframalpha.com/ Wolfram Alpha]]
449 [def __Wolfram_functions [@https://functions.wolfram.com functions.wolfram.com]]
450 [def __TOMS748 [@http://portal.acm.org/citation.cfm?id=210111 TOMS Algorithm 748: enclosing zeros of continuous functions]]
451 [def __TOMS910 [@http://portal.acm.org/citation.cfm?id=1916469 TOMS Algorithm 910: A Portable C++ Multiple-Precision System for Special-Function Calculations]]
452 [def __why_complements [link why_complements why complements?]]
453 [def __complements [link math_toolkit.stat_tut.overview.complements complements]]
454 [def __performance [link perf performance]]
455 [def __building [link math_toolkit.building building libraries]]
456 [def __e_float [@http://calgo.acm.org/910.zip e_float (TOMS Algorithm 910)]]
457 [def __Abramowitz_Stegun M. Abramowitz and I. A. Stegun, Handbook of Mathematical Functions, NBS  (1964)]
458 [def __DMLF [@http://dlmf.nist.gov/ NIST Digital Library of Mathematical Functions (DMLF)]]
459 [def __floating_point  [@http://en.wikipedia.org/wiki/Floating_point Floating point]]
460 [def __epsilon [@http://en.wikipedia.org/wiki/Machine_epsilon machine epsilon]]
461 [def __ADL [@http://en.cppreference.com/w/cpp/language/adl Argument Dependent Lookup (ADL)]]
462 [def __function_template_instantiation [@http://en.cppreference.com/w/cpp/language/function_template Function template instantiation]]
463 [def __fundamental_types [@http://en.cppreference.com/w/cpp/language/types fundamental (built-in) types]]
464 [def __guard_digits [@http://en.wikipedia.org/wiki/Guard_digit guard digits]]
465 [def __SSE2 [@http://en.wikipedia.org/wiki/SSE2 SSE2 instructions]]
466 [def __representable [@http://en.wikipedia.org/wiki/Floating_point#Representable_numbers.2C_conversion_and_rounding representable]]
467 [def __short_float [@http://www.open-std.org/jtc1/sc22/wg14/www/docs/n2016.pdf N2016 short float type]]
468 [def __random_variate [@http://en.wikipedia.org/wiki/Random_variate random variate]]
469 [def __random_variable [@http://en.wikipedia.org/wiki/Random_variable random variable]]
470 [def __probability_distribution [@http://en.wikipedia.org/wiki/Probability_distribution probability_distribution]]
471 [def __C_math [@http://www.cplusplus.com/reference/cmath/ C math functions]]
472 [def __Lambert_W [@http://en.wikipedia.org/wiki/Lambert_W_function Lambert W function]]
473 [def __CUDA [@https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#c-cplusplus-language-support CUDA NVidia GPU C/C++ language support]]
474 [def __Luu_thesis [@http://discovery.ucl.ac.uk/1482128/1/Luu_thesis.pdf Thomas Luu, Thesis, University College London (2015)]]
475 [def __rational_function [@https://en.wikipedia.org/wiki/Rational_function rational function]]
476 [def __remez [@http://en.wikipedia.org/wiki/Remez_algorithm Remez algorithm]]
477 [def __ULP [@https://en.wikipedia.org/wiki/Unit_in_the_last_place Unit in the Last Place]]
478 [def __github [@github.com GitHub]]
479 [def __github_boost [@https://github.com/boostorg Boost GitHub]]
480 [def __github_math [@https://github.com/boostorg/math Boost.Math GitHub]]
481 [/ Some composite templates]
482 [template super[x]'''<superscript>'''[x]'''</superscript>''']
483 [template sub[x]'''<subscript>'''[x]'''</subscript>''']
484 [template floor[x]'''&#x230A;'''[x]'''&#x230B;''']
485 [template floorlr[x][lfloor][x][rfloor]]
486 [template ceil[x] '''&#x2308;'''[x]'''&#x2309;''']
487
488 [template header_file[file] [@../../../../[file] [file]]]
489
490 [template optional_policy[]
491 The final __Policy argument is optional and can be used to
492 control the behaviour of the function: how it handles errors,
493 what level of precision to use etc.  Refer to the
494 [link policy policy documentation for more details].]
495
496 [template discrete_quantile_warning[NAME]
497 [caution
498 The [NAME] distribution is a discrete distribution: internally,
499 functions like the `cdf` and `pdf` are treated "as if" they are continuous
500 functions, but in reality the results returned from these functions
501 only have meaning if an integer value is provided for the random variate
502 argument.
503
504 The quantile function will by default return an integer result that has been
505 /rounded outwards/.  That is to say lower quantiles (where the probability is
506 less than 0.5) are rounded downward, and upper quantiles (where the probability
507 is greater than 0.5) are rounded upwards.  This behaviour
508 ensures that if an X% quantile is requested, then /at least/ the requested
509 coverage will be present in the central region, and /no more than/
510 the requested coverage will be present in the tails.
511
512 This behaviour can be changed so that the quantile functions are rounded
513 differently, or even return a real-valued result using
514 [link math_toolkit.pol_overview Policies].  It is strongly
515 recommended that you read the tutorial
516 [link math_toolkit.pol_tutorial.understand_dis_quant
517 Understanding Quantiles of Discrete Distributions] before
518 using the quantile function on the [NAME] distribution.  The
519 [link math_toolkit.pol_ref.discrete_quant_ref reference docs]
520 describe how to change the rounding policy
521 for these distributions.
522 ] [/ caution]
523
524 ] [/ template discrete_quantile_warning]
525
526 [block '''<bookinfo><releaseinfo>'''
527 This manual is also available in
528 [@http://sourceforge.net/projects/boost/files/boost-docs/
529 printer friendly PDF format],
530 and as a CD ISBN 0-9504833-2-X  978-0-9504833-2-0, Classification 519.2-dc22.
531 '''</releaseinfo></bookinfo>''']
532
533 [mathpart overview Overview]
534 [include overview/overview.qbk]
535 [include overview/structure.qbk] [/getting about, directory and file structure.]
536 [include overview/result_type_calc.qbk]
537 [include overview/error_handling.qbk]
538
539 [section:compilers_overview Compilers]
540 [compilers_overview]
541 [endsect]
542 [include overview/config_macros.qbk]
543 [section:intro_pol_overview Policies]
544 [policy_overview]
545 [endsect]
546
547 [include overview/thread_safety.qbk]
548
549 [section:perf_over1 Performance]
550 [performance_overview]
551 [endsect]
552 [include overview/building.qbk]
553 [section:history1 History and What's New]
554 [history]
555 [endsect]
556 [section:overview_tr1 C99 and C++ TR1 C-style Functions]
557 [tr1_overview]
558 [endsect]
559 [include overview/faq.qbk]
560 [include overview/contact_info.qbk]
561
562 [endmathpart] [/section:main_overview Overview]
563
564 [mathpart utils Floating Point Utilities]
565 [include fp_utilities/rounding_func.qbk]
566 [include fp_utilities/fpclassify.qbk]
567 [include fp_utilities/sign.qbk]
568 [include fp_utilities/fp_facets.qbk]
569 [include fp_utilities/float_next.qbk]
570 [include fp_utilities/float_comparison.qbk]
571 [include fp_utilities/condition_numbers.qbk]
572 [endmathpart]
573
574 [mathpart cstdfloat..Specified-width floating-point typedefs]
575 [include cstdfloat/cstdfloat.qbk]
576 [endmathpart] [/mathpart cstdfloat..Fixed-width floating-point types]
577
578 [include constants/constants.qbk]
579
580 [mathpart dist Statistical Distributions and Functions]
581 [include distributions/dist_tutorial.qbk]
582 [include distributions/dist_reference.qbk] [/includes all individual distribution.qbk files]
583 [endmathpart] [/section:dist Statistical Distributions and Functions]
584
585 [mathpart statistics Statistics ]
586 [include statistics/univariate_statistics.qbk]
587 [include statistics/bivariate_statistics.qbk]
588 [include statistics/signal_statistics.qbk]
589 [include statistics/anderson_darling.qbk]
590 [include statistics/t_test.qbk]
591 [include statistics/runs_test.qbk]
592 [include statistics/ljung_box.qbk]
593 [endmathpart] [/section:statistics Statistics]
594
595 [mathpart vector_functionals Vector Functionals -  Norms]
596 [include vector_functionals/norms.qbk]
597 [endmathpart] [/section:vector_functionals Vector Functionals]
598
599
600 [mathpart special Special Functions]
601
602 [include sf/number_series.qbk]
603
604 [section:sf_gamma Gamma Functions]
605 [include sf/tgamma.qbk]
606 [include sf/lgamma.qbk]
607 [include sf/digamma.qbk]
608 [include sf/trigamma.qbk]
609 [include sf/polygamma.qbk]
610 [include sf/gamma_ratios.qbk]
611 [include sf/igamma.qbk]
612 [include sf/igamma_inv.qbk]
613 [include sf/gamma_derivatives.qbk]
614 [endsect] [/section:sf_gamma Gamma Functions]
615
616 [include sf/factorials.qbk]
617
618 [section:sf_beta Beta Functions]
619 [include sf/beta.qbk]
620 [include sf/ibeta.qbk]
621 [include sf/ibeta_inv.qbk]
622 [include sf/beta_derivative.qbk]
623 [endsect] [/section:sf_beta Beta Functions]
624
625 [section:sf_erf Error Functions]
626 [include sf/erf.qbk]
627 [include sf/erf_inv.qbk]
628 [endsect] [/section:sf_erf Error Functions]
629
630 [section:sf_poly Polynomials]
631 [include sf/legendre.qbk]
632 [include sf/legendre_stieltjes.qbk]
633 [include sf/laguerre.qbk]
634 [include sf/hermite.qbk]
635 [include sf/chebyshev.qbk]
636 [include sf/spherical_harmonic.qbk]
637 [include sf/cardinal_b_splines.qbk]
638 [include sf/gegenbauer.qbk]
639 [include sf/jacobi.qbk]
640 [endsect] [/section:sf_poly Polynomials]
641
642 [section:bessel Bessel Functions]
643 [include sf/bessel_introduction.qbk]
644 [include sf/bessel_jy.qbk]
645 [include sf/bessel_ik.qbk]
646 [include sf/bessel_spherical.qbk]
647 [include sf/bessel_prime.qbk]
648 [endsect] [/section:bessel Bessel Functions]
649
650 [/Hankel functions]
651 [include sf/hankel.qbk]
652
653 [/Airy Functions]
654 [include sf/airy.qbk]
655
656 [section:ellint Elliptic Integrals]
657 [include sf/ellint_introduction.qbk]
658 [include sf/ellint_carlson.qbk]
659 [include sf/ellint_legendre.qbk]
660 [endsect] [/section:ellint Elliptic Integrals]
661
662 [include sf/jacobi_elliptic.qbk]
663
664 [/ Lambert W function]
665 [include sf/lambert_w.qbk]
666
667 [section:zetas Zeta Functions]
668 [include sf/zeta.qbk]
669 [endsect]
670
671 [include sf/expint.qbk]
672
673 [include sf/hypergeometric.qbk]
674
675 [include sf/powers.qbk]
676 [include sf/sinc.qbk]
677 [include sf/inv_hyper.qbk]
678
679 [include sf/owens_t.qbk]
680
681 [endmathpart] [/section:special Special Functions]
682
683 [mathpart extern_c TR1 and C99 external "C" Functions]
684 [section:main_tr1 C99 and TR1 C Functions Overview]
685 [tr1_overview]
686 [endsect]
687 [include tr1/c99_ref.qbk]
688 [include tr1/tr1_ref.qbk]
689 [endmathpart]
690
691 [mathpart root_finding Root Finding \& Minimization Algorithms]
692 [include roots/roots_overview.qbk]
693 [endmathpart] [/mathpart roots Root Finding Algorithms]
694
695 [mathpart poly Polynomials and Rational Functions]
696 [include internals/polynomial.qbk]
697 [include internals/rational.qbk]
698 [endmathpart]
699
700 [mathpart interpolation Interpolation]
701 [include interpolators/cardinal_cubic_b_spline.qbk]
702 [include interpolators/cardinal_quadratic_b_spline.qbk]
703 [include interpolators/cardinal_quintic_b_spline.qbk]
704 [include interpolators/whittaker_shannon.qbk]
705 [include interpolators/barycentric_rational_interpolation.qbk]
706 [include interpolators/vector_barycentric_rational.qbk]
707 [include interpolators/catmull_rom.qbk]
708 [include interpolators/cardinal_trigonometric.qbk]
709 [endmathpart]
710
711 [mathpart quadrature Quadrature and Differentiation]
712 [include quadrature/trapezoidal.qbk]
713 [include quadrature/gauss.qbk]
714 [include quadrature/gauss_kronrod.qbk]
715 [include quadrature/double_exponential.qbk]
716 [include quadrature/ooura_fourier_integrals.qbk]
717 [include quadrature/naive_monte_carlo.qbk]
718 [include differentiation/numerical_differentiation.qbk]
719 [include differentiation/autodiff.qbk]
720 [include differentiation/lanczos_smoothing.qbk]
721 [endmathpart]
722
723 [include complex/complex-tr1.qbk]
724 [include quaternion/math-quaternion.qbk]
725 [include octonion/math-octonion.qbk]
726 [include gcd/math-gcd.qbk]
727
728 [mathpart internals Internal Details: Series, Rationals and Continued Fractions, Testing, and Development Tools]
729
730 [include internals/internals_overview.qbk]
731 [section:internals Internal tools]
732 [include internals/series.qbk]
733 [include internals/fraction.qbk]
734 [include internals/recurrence.qbk]
735 [/include internals/rational.qbk] [/moved to tools]
736 [include internals/tuple.qbk]
737 [/include internals/polynomial.qbk] [/moved to tools]
738 [include internals/minimax.qbk]
739 [include internals/relative_error.qbk] [/ uncertainty of floating-point calculations.]
740 [include internals/test_data.qbk]
741 [endsect] [/section:internals]
742
743 [endmathpart] [/mathpart internals Internal Details: Series, Rationals and Continued Fractions, Testing, and Development Tools]
744
745 [mathpart using_udt Use with User-Defined Floating-Point Types - Boost.Multiprecision and others]
746 [include concepts/concepts.qbk]
747 [endmathpart] [/section:using_udt Use with User Defined Floating-Point Types]
748
749 [include policies/policy.qbk]
750
751 [include performance/performance.qbk]
752
753 [mathpart backgrounders Backgrounders]
754 [include background/implementation.qbk]
755 [include background/special_tut.qbk]
756 [include background/error.qbk] [/relative error NOT handling]
757 [include background/lanczos.qbk]
758 [include background/remez.qbk]
759 [include background/references.qbk]
760
761
762 [section:logs_and_tables Error logs and tables]
763
764 [section:all_table Tables of Error Rates for all Functions]
765
766 [all_tables]
767
768 [endsect]
769
770 [section:logs Error Logs For Error Rate Tables]
771
772 [all_errors]
773
774 [endsect]
775
776 [endsect]
777
778 [endmathpart] [/section:backgrounders Backgrounders]
779
780 [mathpart status Library Status]
781 [section:history2 History and What's New]
782 [history]
783 [endsect]
784
785 [include overview/issues.qbk]
786 [include overview/credits.qbk]
787 [/include test_HTML4_symbols.qbk]
788 [/include test_Latin1_symbols.qbk]
789
790 [endmathpart] [/section:status Status and Roadmap]
791
792 [mathpart indexes Indexes]
793
794 [named_index function_name Function Index]
795 [named_index class_name Class Index]
796 [named_index typedef_name Typedef Index]
797 [named_index macro_name Macro Index]
798 [index]
799
800 [endmathpart]
801
802 [/ math.qbk
803   Copyright 2008, 2010, 2012, 2013, 2014, 2015 John Maddock and Paul A. Bristow.
804   Distributed under the Boost Software License, Version 1.0.
805   (See accompanying file LICENSE_1_0.txt or copy at
806   http://www.boost.org/LICENSE_1_0.txt).
807 ]