Major upgrade merged from Trunk: see history section in the docs for the full details.
[SVN r53183]
@@ -4,6 +4,9 @@
|
||||
# http://www.boost.org/LICENSE_1_0.txt.
|
||||
|
||||
import testing ;
|
||||
import pch ;
|
||||
|
||||
cpp-pch pch : ../src/tr1/pch.hpp : <include>../src/tr1 <link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1 ;
|
||||
|
||||
C99_SOURCES = acosh
|
||||
asinh
|
||||
@@ -56,40 +59,44 @@ if --disable-long-double in [ modules.peek : ARGV ]
|
||||
long-double-opts = <build>no ;
|
||||
}
|
||||
|
||||
compile has_long_double_support.cpp : $(long-double-opts) ;
|
||||
|
||||
lib boost_math_tr1 : ../src/tr1/$(TR1_SOURCES).cpp
|
||||
lib boost_math_tr1 : ../src/tr1/$(TR1_SOURCES).cpp pch
|
||||
:
|
||||
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
|
||||
<include>../src/tr1
|
||||
;
|
||||
|
||||
lib boost_math_tr1f : ../src/tr1/$(TR1_SOURCES)f.cpp
|
||||
lib boost_math_tr1f : ../src/tr1/$(TR1_SOURCES)f.cpp pch
|
||||
:
|
||||
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
|
||||
<include>../src/tr1
|
||||
;
|
||||
|
||||
lib boost_math_tr1l : ../src/tr1/$(TR1_SOURCES)l.cpp
|
||||
lib boost_math_tr1l : ../src/tr1/$(TR1_SOURCES)l.cpp pch
|
||||
:
|
||||
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
|
||||
<dependency>has_long_double_support
|
||||
$(long-double-opts)
|
||||
<dependency>../config//has_long_double_support
|
||||
<include>../src/tr1
|
||||
$(long-double-opts)
|
||||
;
|
||||
|
||||
lib boost_math_c99 : ../src/tr1/$(C99_SOURCES).cpp
|
||||
lib boost_math_c99 : ../src/tr1/$(C99_SOURCES).cpp pch
|
||||
:
|
||||
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
|
||||
<include>../src/tr1
|
||||
;
|
||||
|
||||
lib boost_math_c99f : ../src/tr1/$(C99_SOURCES)f.cpp
|
||||
lib boost_math_c99f : ../src/tr1/$(C99_SOURCES)f.cpp pch
|
||||
:
|
||||
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
|
||||
<include>../src/tr1
|
||||
;
|
||||
|
||||
lib boost_math_c99l : ../src/tr1/$(C99_SOURCES)l.cpp
|
||||
lib boost_math_c99l : ../src/tr1/$(C99_SOURCES)l.cpp pch
|
||||
:
|
||||
<link>shared:<define>BOOST_MATH_TR1_DYN_LINK=1
|
||||
<dependency>has_long_double_support
|
||||
$(long-double-opts)
|
||||
<dependency>../config//has_long_double_support
|
||||
<include>../src/tr1
|
||||
$(long-double-opts)
|
||||
;
|
||||
|
||||
|
||||
|
||||
20
config/Jamfile.v2
Normal file
@@ -0,0 +1,20 @@
|
||||
# copyright John Maddock 2008
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
# (See accompanying file LICENSE_1_0.txt or copy at
|
||||
# http://www.boost.org/LICENSE_1_0.txt.
|
||||
|
||||
import modules ;
|
||||
import path ;
|
||||
|
||||
local ntl-path = [ modules.peek : NTL_PATH ] ;
|
||||
local gmp_path = [ modules.peek : GMP_PATH ] ;
|
||||
|
||||
obj has_long_double_support : has_long_double_support.cpp ;
|
||||
obj has_mpfr_class : has_mpfr_class.cpp :
|
||||
<include>$(gmp_path) <include>$(gmp_path)/mpfr <include>$(gmp_path)/gmpfrxx ;
|
||||
obj has_ntl_rr : has_ntl_rr.cpp : <include>$(ntl-path)/include ;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
14
config/has_mpfr_class.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
// Copyright John Maddock 2008.
|
||||
// Copyright Paul A. Britow 2009
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# pragma warning (disable : 4127) // conditional expression is constant
|
||||
# pragma warning (disable : 4800) // 'int' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
# pragma warning (disable : 4512) // assignment operator could not be generated
|
||||
#endif
|
||||
|
||||
#include <gmpfrxx.h>
|
||||
|
||||
12
config/has_ntl_rr.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
// Copyright John Maddock 2008.
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# pragma warning (disable : 4100) // unreferenced formal parameter
|
||||
#endif
|
||||
|
||||
#include <NTL/RR.h>
|
||||
|
||||
@@ -62,7 +62,6 @@ boostbook standalone
|
||||
<format>pdf:<xsl:param>use.role.for.mediaobject=1
|
||||
<format>pdf:<xsl:param>preferred.mediaobject.role=print
|
||||
<format>pdf:<xsl:param>img.src.path=$(images_location)/
|
||||
<format>pdf:<xsl:param>admon.graphics.path=$(images_location)/../../svg-admon/
|
||||
<format>pdf:<xsl:param>draft.mode="no"
|
||||
;
|
||||
|
||||
@@ -78,3 +77,5 @@ boostbook standalone
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
60
doc/distexplorer/Jamfile.v2
Normal file
@@ -0,0 +1,60 @@
|
||||
# Copyright Paul A. Bristow 2008
|
||||
# Copyright John Maddock 2008
|
||||
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
# (See accompanying file LICENSE_1_0.txt
|
||||
# or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
# Reminder: whitespace MUST terminate variable name!
|
||||
# so space BEFORE ; and :
|
||||
|
||||
# Distexplorer documentation as html from Quickbook.
|
||||
|
||||
# project boost/doc ;
|
||||
|
||||
using quickbook ;
|
||||
|
||||
#path-constant images_location : html ;
|
||||
# location of SVG images referenced by Quickbook.
|
||||
# screenshots installed as recomended by Sourceforge.
|
||||
|
||||
xml distexplorer
|
||||
:
|
||||
distexplorer.qbk
|
||||
:
|
||||
;
|
||||
|
||||
# import boostbook : boostbook ;
|
||||
|
||||
boostbook standalone
|
||||
:
|
||||
distexplorer
|
||||
:
|
||||
# Path for links to Boost:
|
||||
<xsl:param>boost.root=../../../../..
|
||||
# Path for libraries index:
|
||||
<xsl:param>boost.libraries=../../../../../libs/libraries.htm
|
||||
# Use the main Boost stylesheet:
|
||||
<xsl:param>html.stylesheet=../../../../../doc/html/boostbook.css
|
||||
|
||||
# Some general style settings:
|
||||
<xsl:param>table.footnote.number.format=1
|
||||
<xsl:param>footnote.number.format=1
|
||||
|
||||
# HTML options first:
|
||||
# Use graphics not text for navigation:
|
||||
<xsl:param>navig.graphics=1
|
||||
# How far down we chunk nested sections, basically all of them:
|
||||
<xsl:param>chunk.section.depth=10
|
||||
# Don't put the first section on the same page as the TOC:
|
||||
<xsl:param>chunk.first.sections=1
|
||||
# How far down sections get TOC's
|
||||
<xsl:param>toc.section.depth=10
|
||||
# Max depth in each TOC:
|
||||
<xsl:param>toc.max.depth=4
|
||||
# How far down we go with TOC's
|
||||
<xsl:param>generate.section.toc.level=10
|
||||
#<xsl:param>root.filename="distexplorer"
|
||||
;
|
||||
|
||||
|
||||
105
doc/distexplorer/distexplorer.qbk
Normal file
@@ -0,0 +1,105 @@
|
||||
[article Statistical Distribution Explorer
|
||||
[quickbook 1.4]
|
||||
[copyright 2008 Paul A. Bristow, John Maddock]
|
||||
[license
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
[@http://www.boost.org/LICENSE_1_0.txt])
|
||||
]
|
||||
[authors [Bristow, Paul A.], [Maddock, John]]
|
||||
[category math]
|
||||
[purpose mathematics]
|
||||
[/last-revision $Date$]
|
||||
]
|
||||
|
||||
A Windows utility to show the properties of statistical distributions
|
||||
using parameters provided interactively by the user.
|
||||
|
||||
The distributions provided are:
|
||||
|
||||
*bernoulli
|
||||
*beta_distribution
|
||||
*binomial_distribution
|
||||
*cauchy
|
||||
*chi_squared
|
||||
*exponential
|
||||
*extreme_value
|
||||
*fisher_f
|
||||
*gamma_distribution
|
||||
*lognormal_distribution
|
||||
*negative_binomial_distribution
|
||||
*normal_distribution
|
||||
*pareto
|
||||
*poisson
|
||||
*rayleigh
|
||||
*students_t
|
||||
*triangular
|
||||
*uniform
|
||||
*weibull
|
||||
|
||||
Properties of distributions computed are:
|
||||
|
||||
*mean
|
||||
*mode
|
||||
*median
|
||||
*variance
|
||||
*standard deviation
|
||||
*coefficient of variation,
|
||||
*skewness
|
||||
*kurtosis
|
||||
*excess
|
||||
*range supported
|
||||
|
||||
Calculated, from values provided, are:
|
||||
|
||||
*probability density (or mass) function (PDF)
|
||||
*cumulative distribution function (CDF), and complement
|
||||
*Quantiles (percentiles) are calculated for typical risk (alpha) probabilities (0.001, 0.01, 0.5, 0.1, 0.333)
|
||||
and for additional probabilities provided by the user.
|
||||
|
||||
Results can be saved to text files using Save or SaveAs.
|
||||
All the values on the four tabs are output to the file chosen,
|
||||
and are tab separated to assist input to other programs,
|
||||
for example, spreadsheets or text editors.
|
||||
|
||||
Note: Excel (for example), only shows 10 decimal digits, by default:
|
||||
to display the maximum possible precision (abotu 15 decimal digits),
|
||||
it is necessary to format all cells to display this precision.
|
||||
Although unusually accurate, not all values computed by Distexplorer will be as accurate as this.
|
||||
Values shown as NaN cannot be calculated from the value(s) given,
|
||||
most commonly because the value input is outside the range for the distribution.
|
||||
|
||||
For more information, including downloads, see
|
||||
|
||||
[@http://distexplorer.sourceforge.net/ Distexplorer at Sourceforge]
|
||||
|
||||
This Microsoft Windows 32 package distribution.exe
|
||||
was generated from a C# program
|
||||
and uses a boost_math.dll generated using the
|
||||
Boost.Math C++ source code from the Boost.Math Toolkit, compiled in CLI mode,
|
||||
containing the underlying statistical distribution classes and functions.
|
||||
|
||||
All source code is freely available for view and use under the
|
||||
[@http://www.boost.org/LICENSE_1_0.txt Boost Open Source License].
|
||||
|
||||
[@https://svn.boost.org/svn/boost/sandbox\math_toolkit\libs\math\dot_net_example
|
||||
Math Toolkit C++ source code]
|
||||
to produce boost_math.dll is in the most recent [@http://www.boost.org Boost] release, initially 1.35.0.
|
||||
|
||||
It is distributed as a single Windows Installer package Setupdistex.msi.
|
||||
Unzip the distexplorer.zip to a temporary location of your choice and run setup.exe.
|
||||
|
||||
(Note that .NET framework 2.0 and VCredist are requirements for this program.
|
||||
Most recent and updated Windows environments will already have these,
|
||||
but they are quickly, easily and safely installed from the Microsoft site if required.)
|
||||
|
||||
(The package cannot be run on other platforms at present but it should be possible
|
||||
to build an equivalent utility on any C/C++ platform if anyone would like to undertake this task.)
|
||||
|
||||
[/ Distexplorer.qbk
|
||||
Copyright 2008 John Maddock and Paul A. Bristow.
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt).
|
||||
]
|
||||
|
||||
216
doc/distexplorer/html/index.html
Normal file
@@ -0,0 +1,216 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Statistical Distribution Explorer</title>
|
||||
<link rel="stylesheet" href="../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="index.html" title="Statistical Distribution Explorer">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table cellpadding="2" width="100%"><tr>
|
||||
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
|
||||
<td align="center"><a href="../../../../../index.html">Home</a></td>
|
||||
<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
|
||||
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
|
||||
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
|
||||
<td align="center"><a href="../../../../../more/index.htm">More</a></td>
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav"></div>
|
||||
<div class="article" lang="en">
|
||||
<div class="titlepage">
|
||||
<div>
|
||||
<div><h2 class="title">
|
||||
<a name="statistical_distribution_explorer"></a>Statistical Distribution Explorer</h2></div>
|
||||
<div><div class="authorgroup">
|
||||
<div class="author"><h3 class="author">
|
||||
<span class="firstname">Paul A.</span> <span class="surname">Bristow</span>
|
||||
</h3></div>
|
||||
<div class="author"><h3 class="author">
|
||||
<span class="firstname">John</span> <span class="surname">Maddock</span>
|
||||
</h3></div>
|
||||
</div></div>
|
||||
<div><p class="copyright">Copyright © 2008 Paul A. Bristow, John Maddock</p></div>
|
||||
<div><div class="legalnotice">
|
||||
<a name="id770834"></a><p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
</div></div>
|
||||
</div>
|
||||
<hr>
|
||||
</div>
|
||||
<p>
|
||||
A Windows utility to show the properties of statistical distributions using parameters
|
||||
provided interactively by the user.
|
||||
</p>
|
||||
<p>
|
||||
The distributions provided are:
|
||||
</p>
|
||||
<div class="itemizedlist"><ul type="disc">
|
||||
<li>
|
||||
bernoulli
|
||||
</li>
|
||||
<li>
|
||||
beta_distribution
|
||||
</li>
|
||||
<li>
|
||||
binomial_distribution
|
||||
</li>
|
||||
<li>
|
||||
cauchy
|
||||
</li>
|
||||
<li>
|
||||
chi_squared
|
||||
</li>
|
||||
<li>
|
||||
exponential
|
||||
</li>
|
||||
<li>
|
||||
extreme_value
|
||||
</li>
|
||||
<li>
|
||||
fisher_f
|
||||
</li>
|
||||
<li>
|
||||
gamma_distribution
|
||||
</li>
|
||||
<li>
|
||||
lognormal_distribution
|
||||
</li>
|
||||
<li>
|
||||
negative_binomial_distribution
|
||||
</li>
|
||||
<li>
|
||||
normal_distribution
|
||||
</li>
|
||||
<li>
|
||||
pareto
|
||||
</li>
|
||||
<li>
|
||||
poisson
|
||||
</li>
|
||||
<li>
|
||||
rayleigh
|
||||
</li>
|
||||
<li>
|
||||
students_t
|
||||
</li>
|
||||
<li>
|
||||
triangular
|
||||
</li>
|
||||
<li>
|
||||
uniform
|
||||
</li>
|
||||
<li>
|
||||
weibull
|
||||
</li>
|
||||
</ul></div>
|
||||
<p>
|
||||
Properties of distributions computed are:
|
||||
</p>
|
||||
<div class="itemizedlist"><ul type="disc">
|
||||
<li>
|
||||
mean
|
||||
</li>
|
||||
<li>
|
||||
mode
|
||||
</li>
|
||||
<li>
|
||||
median
|
||||
</li>
|
||||
<li>
|
||||
variance
|
||||
</li>
|
||||
<li>
|
||||
standard deviation
|
||||
</li>
|
||||
<li>
|
||||
coefficient of variation,
|
||||
</li>
|
||||
<li>
|
||||
skewness
|
||||
</li>
|
||||
<li>
|
||||
kurtosis
|
||||
</li>
|
||||
<li>
|
||||
excess
|
||||
</li>
|
||||
<li>
|
||||
range supported
|
||||
</li>
|
||||
</ul></div>
|
||||
<p>
|
||||
Calculated, from values provided, are:
|
||||
</p>
|
||||
<div class="itemizedlist"><ul type="disc">
|
||||
<li>
|
||||
probability density (or mass) function (PDF)
|
||||
</li>
|
||||
<li>
|
||||
cumulative distribution function (CDF), and complement
|
||||
</li>
|
||||
<li>
|
||||
Quantiles (percentiles) are calculated for typical risk (alpha) probabilities
|
||||
(0.001, 0.01, 0.5, 0.1, 0.333) and for additional probabilities provided by
|
||||
the user.
|
||||
</li>
|
||||
</ul></div>
|
||||
<p>
|
||||
Results can be saved to text files using Save or SaveAs. All the values on the
|
||||
four tabs are output to the file chosen, and are tab separated to assist input
|
||||
to other programs, for example, spreadsheets or text editors.
|
||||
</p>
|
||||
<p>
|
||||
Note: Excel (for example), only shows 10 decimal digits, by default: to display
|
||||
the maximum possible precision (abotu 15 decimal digits), it is necessary to
|
||||
format all cells to display this precision. Although unusually accurate, not
|
||||
all values computed by Distexplorer will be as accurate as this. Values shown
|
||||
as NaN cannot be calculated from the value(s) given, most commonly because the
|
||||
value input is outside the range for the distribution.
|
||||
</p>
|
||||
<p>
|
||||
For more information, including downloads, see
|
||||
</p>
|
||||
<p>
|
||||
<a href="http://distexplorer.sourceforge.net/" target="_top">Distexplorer at Sourceforge</a>
|
||||
</p>
|
||||
<p>
|
||||
This Microsoft Windows 32 package distribution.exe was generated from a C# program
|
||||
and uses a boost_math.dll generated using the Boost.Math C++ source code from
|
||||
the Boost.Math Toolkit, compiled in CLI mode, containing the underlying statistical
|
||||
distribution classes and functions.
|
||||
</p>
|
||||
<p>
|
||||
All source code is freely available for view and use under the <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">Boost
|
||||
Open Source License</a>.
|
||||
</p>
|
||||
<p>
|
||||
<a href="https://svn.boost.org/svn/boost/sandbox%5Cmath_toolkit%5Clibs%5Cmath%5Cdot_net_example" target="_top">Math
|
||||
Toolkit C++ source code</a> to produce boost_math.dll is in the most recent
|
||||
<a href="http://www.boost.org" target="_top">Boost</a> release, initially 1.35.0.
|
||||
</p>
|
||||
<p>
|
||||
It is distributed as a single Windows Installer package Setupdistex.msi. Unzip
|
||||
the distexplorer.zip to a temporary location of your choice and run setup.exe.
|
||||
</p>
|
||||
<p>
|
||||
(Note that .NET framework 2.0 and VCredist are requirements for this program.
|
||||
Most recent and updated Windows environments will already have these, but they
|
||||
are quickly, easily and safely installed from the Microsoft site if required.)
|
||||
</p>
|
||||
<p>
|
||||
(The package cannot be run on other platforms at present but it should be possible
|
||||
to build an equivalent utility on any C/C++ platform if anyone would like to
|
||||
undertake this task.)
|
||||
</p>
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"><p><small>Last revised: February 26, 2009 at 17:08:18 GMT</small></p></td>
|
||||
<td align="right"><div class="copyright-footer"></div></td>
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav"></div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -62,7 +62,6 @@ boostbook standalone
|
||||
<format>pdf:<xsl:param>use.role.for.mediaobject=1
|
||||
<format>pdf:<xsl:param>preferred.mediaobject.role=print
|
||||
<format>pdf:<xsl:param>img.src.path=$(images_location)/
|
||||
<format>pdf:<xsl:param>admon.graphics.path=$(images_location)/../../svg-admon/
|
||||
<format>pdf:<xsl:param>draft.mode="no"
|
||||
<format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/math/doc/gcd/html
|
||||
;
|
||||
|
||||
@@ -62,7 +62,6 @@ boostbook standalone
|
||||
<format>pdf:<xsl:param>use.role.for.mediaobject=1
|
||||
<format>pdf:<xsl:param>preferred.mediaobject.role=print
|
||||
<format>pdf:<xsl:param>img.src.path=$(images_location)/
|
||||
<format>pdf:<xsl:param>admon.graphics.path=$(images_location)/../../svg-admon/
|
||||
<format>pdf:<xsl:param>draft.mode="no"
|
||||
<format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/math/doc/octonion/html
|
||||
;
|
||||
|
||||
@@ -62,7 +62,6 @@ boostbook standalone
|
||||
<format>pdf:<xsl:param>use.role.for.mediaobject=1
|
||||
<format>pdf:<xsl:param>preferred.mediaobject.role=print
|
||||
<format>pdf:<xsl:param>img.src.path=$(images_location)/
|
||||
<format>pdf:<xsl:param>admon.graphics.path=$(images_location)/../../svg-admon/
|
||||
<format>pdf:<xsl:param>draft.mode="no"
|
||||
<format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/math/doc/quaternion/html
|
||||
;
|
||||
|
||||
@@ -36,7 +36,12 @@ boostbook standalone
|
||||
<xsl:param>toc.max.depth=4
|
||||
# How far down we go with TOC's
|
||||
<xsl:param>generate.section.toc.level=10
|
||||
# Index on type:
|
||||
<xsl:param>index.on.type=1
|
||||
|
||||
#<xsl:param>root.filename="sf_dist_and_tools"
|
||||
#<xsl:param>graphicsize.extension=1
|
||||
#<xsl:param>use.extensions=1
|
||||
|
||||
# PDF Options:
|
||||
# TOC Generation: this is needed for FOP-0.9 and later:
|
||||
@@ -62,10 +67,9 @@ boostbook standalone
|
||||
<format>pdf:<xsl:param>use.role.for.mediaobject=1
|
||||
<format>pdf:<xsl:param>preferred.mediaobject.role=print
|
||||
<format>pdf:<xsl:param>img.src.path=$(images_location)/
|
||||
<format>pdf:<xsl:param>admon.graphics.path=$(images_location)/../../svg-admon/
|
||||
<format>pdf:<xsl:param>draft.mode="no"
|
||||
<format>pdf:<xsl:param>boost.url.prefix=http://www.boost.org/doc/libs/release/libs/math/doc/sf_and_dist/html
|
||||
;
|
||||
|
||||
|
||||
install pdf-install : standalone : <location>. <install-type>PDF ;
|
||||
|
||||
|
||||
101
doc/sf_and_dist/building.qbk
Normal file
@@ -0,0 +1,101 @@
|
||||
[section:building If and How to Build the Library and its Examples and Tests]
|
||||
|
||||
[h4 Building the Library]
|
||||
|
||||
The first thing you need to ask yourself is "Do I need to build anything at all?"
|
||||
as the bulk of this library is header only: meaning you can use it just by
|
||||
#including the necessary header(s). Refer to
|
||||
[link math_toolkit.extern_c C99 and C++ TR1 C-style Functions]
|
||||
for pros and cons of using
|
||||
the TR1 components as opposed to the header only ones.
|
||||
|
||||
The ['only] time you ['need] to build the library is if you want to use the
|
||||
`extern "C"` functions declared in `<boost/math/tr1.hpp>`. To build this
|
||||
using Boost.Build, from a commandline boost-root directory issue a command like:
|
||||
|
||||
bjam toolset=gcc --with-math install
|
||||
|
||||
will do the job on Linux, while:
|
||||
|
||||
bjam toolset=msvc --with-math --build-type=complete stage
|
||||
|
||||
will work better on Windows (leaving libraries built
|
||||
in sub-folder `/stage` below your Boost root directory).
|
||||
Either way you should consult the
|
||||
[@http://www.boost.org/doc/libs/release/more/getting_started/index.html
|
||||
getting started guide] for more information.
|
||||
|
||||
You can also build the libraries from your favourite IDE or command line tool:
|
||||
each `extern "C"` function declared in `<boost/math/tr1.hpp>` has its own
|
||||
source file with the same name in `libs/math/src/tr1`. Just select the
|
||||
sources corresponding to the functions you are using and build them into
|
||||
a library, or else add them directly to your project. Note that the
|
||||
directory `libs/math/src/tr1` will need to be in your compiler's
|
||||
#include path as well as the boost-root directory
|
||||
(MSVC Tools, Options, Projects and Solutions, VC++ Directories, Include files).
|
||||
|
||||
[note If you are using
|
||||
a Windows compiler that supports auto-linking and you have built the sources
|
||||
yourself (or added them directly to your project) then you will need to
|
||||
prevent `<boost/math/tr1.hpp>` from trying to auto-link to the binaries
|
||||
that Boost.Build generates. You can do this by defining either
|
||||
BOOST_MATH_NO_LIB or BOOST_ALL_NO_LIB at project level
|
||||
(so the defines get passed to each compiler invocation).
|
||||
]
|
||||
|
||||
Optionally the sources in `libs/math/src/tr1` have support for using
|
||||
`libs/math/src/tr1/pch.hpp` as a precompiled header
|
||||
['if your compiler supports precompiled headers.] Note that normally
|
||||
this header is a do-nothing include: to activate the header so that
|
||||
it #includes everything required by all the sources you will need to
|
||||
define BOOST_BUILD_PCH_ENABLED on the command line, both when building
|
||||
the pre-compiled header and when building the sources. Boost.Build
|
||||
will do this automatically when appropriate.
|
||||
|
||||
[h4 Building the Examples]
|
||||
|
||||
The examples are all located in `libs/math/example`, they can all
|
||||
be built without reference to any external libraries, either with
|
||||
Boost.Build using the supplied Jamfile, or from your compiler's
|
||||
command line. The only requirement is that the Boost headers are
|
||||
in your compilers #include search path.
|
||||
|
||||
[h4 Building the Tests]
|
||||
|
||||
The tests are located in `libs/math/test` and are best built
|
||||
using Boost.Build and the supplied Jamfile. If you plan to
|
||||
build them separately from your favourite IDE then you will
|
||||
need to add `libs/math/test` to the list of your compiler's
|
||||
search paths.
|
||||
|
||||
You will also need to build and link to
|
||||
the Boost.Regex library for many of the tests: this can built
|
||||
from the command line by following the
|
||||
[@http://www.boost.org/doc/libs/release/more/getting_started/index.html
|
||||
getting started guide], using a command such as:
|
||||
|
||||
bjam toolset=gcc --with-regex install
|
||||
|
||||
or
|
||||
|
||||
bjam toolset=msvc --with-regex --build-type=complete stage
|
||||
|
||||
depending on whether you are on Linux or Windows.
|
||||
|
||||
Many of the tests have optional precompiled header support
|
||||
using the header `libs/math/test/pch.hpp`.
|
||||
Note that normally
|
||||
this header is a do-nothing include: to activate the header so that
|
||||
it #includes everything required by all the sources you will need to
|
||||
define BOOST_BUILD_PCH_ENABLED on the command line, both when building
|
||||
the pre-compiled header and when building the sources. Boost.Build
|
||||
will do this automatically when appropriate.
|
||||
|
||||
[endsect]
|
||||
|
||||
[/ building.qbk
|
||||
Copyright 2006, 2007, 2008 John Maddock and Paul A. Bristow.
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt).
|
||||
]
|
||||
@@ -286,6 +286,8 @@ Returns /x/ truncated to the nearest integer.
|
||||
|
||||
See also __trunc for the full template (header only) version of this function.
|
||||
|
||||
See also [@http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1124.pdf C99 ISO Standard]
|
||||
|
||||
[endsect]
|
||||
|
||||
[/
|
||||
|
||||
@@ -61,7 +61,7 @@ of breed" algorithms as many other libraries: the principle difference
|
||||
is that this library is implemented in C++ - taking advantage of all
|
||||
the abstraction mechanisms that C++ offers - where as most traditional
|
||||
numeric libraries are implemented in C or FORTRAN. Traditionally
|
||||
languages such as C or FORTAN are perceived as easier to optimise
|
||||
languages such as C or FORTRAN are perceived as easier to optimise
|
||||
than more complex languages like C++, so in a sense this library
|
||||
provides a good test of current compiler technology, and the
|
||||
"abstraction penalty" - if any - of C++ compared to other languages.
|
||||
|
||||
@@ -14,17 +14,58 @@ replacement for the "real" NTL::RR that adds some syntactic sugar to keep
|
||||
this library happy, plus some of the standard library functions not implemented
|
||||
in NTL.
|
||||
|
||||
Finally there is a high precision __lanczos suitable for use with `boost::math::ntl::RR`,
|
||||
used at 1000-bit precision in
|
||||
[@../../../tools/ntl_rr_lanczos.hpp libs/math/tools/ntl_rr_lanczos.hpp].
|
||||
The approximation has a theoretical precision of > 90 decimal digits,
|
||||
and an experimental precision of > 100 decimal digits. To use that
|
||||
approximation, just include that header before any of the special
|
||||
function headers (if you don't use it, you'll get a slower, but
|
||||
fully generic implementation for all of the gamma-like functions).
|
||||
For those functions that are based upon the __lanczos, the bindings
|
||||
defines a series of approximations with up to 61 terms and accuracy
|
||||
up to approximately 3e-113. This therefore sets the upper limit for accuracy
|
||||
to the majority of functions defined this library when used with `NTL::RR`.
|
||||
|
||||
There is a concept checking test program for NTL support
|
||||
[@../../../../../libs/math/test/ntl_concept_check.cpp here].
|
||||
|
||||
[endsect][/section:use_ntl Using With NTL - a High Precision Floating-Point Library]
|
||||
|
||||
[section:use_mpfr Using With MPFR / GMP - a High-Precision Floating-Point Library]
|
||||
|
||||
The special functions and tools in this library can be used with
|
||||
[@http://www.mpfr.org MPFR (an arbitrary precision number type based on the GMP library)],
|
||||
via the bindings in [@../../../../../boost/math/bindings/mpfr.hpp boost/math/bindings/mpfr.hpp].
|
||||
|
||||
In order to use these binings you will need to have installed [@http://www.mpfr.org MPFR]
|
||||
plus it's dependency the [@http://gmplib.org GMP library] and the C++ wrapper for MPFR known as
|
||||
[@http://math.berkeley.edu/~wilken/code/gmpfrxx/ gmpfrxx (or mpfr_class)].
|
||||
|
||||
Unfortunately `mpfr_class` doesn't quite satisfy our conceptual requirements,
|
||||
so there is a very thin set of additional interfaces and some helper traits defined in
|
||||
[@../../../../../boost/math/bindings/mpfr.hpp boost/math/bindings/mpfr.hpp] that you
|
||||
should use in place of including 'gmpfrxx.h' directly. The existing mpfr_class is
|
||||
then usable unchanged once this header is included, so it's performance-enhancing
|
||||
expression templates are preserved and fully supported by this library:
|
||||
|
||||
#include <boost/math/bindings/mpfr.hpp>
|
||||
#include <boost/math/special_functions/gamma.hpp>
|
||||
|
||||
int main()
|
||||
{
|
||||
mpfr_class::set_dprec(500); // 500 bit precision
|
||||
//
|
||||
// Note that the argument to tgamma is an expression template,
|
||||
// that's just fine here:
|
||||
//
|
||||
mpfr_class v = boost::math::tgamma(sqrt(mpfr_class(2)));
|
||||
std::cout << std::setprecision(50) << v << std::endl;
|
||||
}
|
||||
|
||||
|
||||
For those functions that are based upon the __lanczos, the bindings
|
||||
defines a series of approximations with up to 61 terms and accuracy
|
||||
up to approximately 3e-113. This therefore sets the upper limit for accuracy
|
||||
to the majority of functions defined this library when used with `mpfr_class`.
|
||||
|
||||
There is a concept checking test program for mpfr support
|
||||
[@../../../../../libs/math/test/mpfr_concept_check.cpp here].
|
||||
|
||||
[endsect][/section:use_mpfr Using With MPFR / GMP - a High-Precision Floating-Point Library]
|
||||
|
||||
[section:concepts Conceptual Requirements for Real Number Types]
|
||||
|
||||
The functions, and statistical distributions in this library can be used with
|
||||
|
||||
@@ -7,13 +7,13 @@ John Maddock started this library, the beta, gamma, erf, polynomial,
|
||||
and factorial functions are his, as is the "Toolkit" section, and many
|
||||
of the statistical distributions.
|
||||
|
||||
Paul A. Bristow threw down the challenge in
|
||||
[@http://www2.open-std.org/JTC1/SC22/WG21/docs/papers/2004/n1668.pdf
|
||||
A Proposal to add Mathematical Functions for Statistics to the C++
|
||||
Paul A. Bristow threw down the challenge in
|
||||
[@http://www2.open-std.org/JTC1/SC22/WG21/docs/papers/2004/n1668.pdf
|
||||
A Proposal to add Mathematical Functions for Statistics to the C++
|
||||
Standard Library] to add the key math functions, especially those essential for
|
||||
statistics. After JM accepted and solved the difficult problems,
|
||||
statistics. After JM accepted and solved the difficult problems,
|
||||
not only numerically, but in full C++ template style, PAB
|
||||
implemented a few of the statistical distributions. PAB also tirelessly
|
||||
implemented a few of the statistical distributions. PAB also tirelessly
|
||||
proof-read everything that JM threw at him (so that all
|
||||
remaining editorial mistakes are his fault).
|
||||
|
||||
@@ -25,16 +25,20 @@ Bruno Lalande submitted the "compile time power of a runtime base" code.
|
||||
Johan R'''å'''de wrote the optimised floating point classification
|
||||
code.
|
||||
|
||||
Gautam Sewani coded the logistic distribution as part of a Google Summer of Code project 2008.
|
||||
|
||||
M. A. (Thijs) van den Berg coded the Laplace distribution.
|
||||
(Thijs has also threatened to implement some multivariate distributions).
|
||||
|
||||
Professor Nico Temme for advice on the inverse incomplete beta function.
|
||||
|
||||
[@http://www.shoup.net Victor Shoup for NTL],
|
||||
without which it would have much difficult to
|
||||
[@http://www.shoup.net Victor Shoup for NTL],
|
||||
without which it would have much more difficult to
|
||||
produce high accuracy constants, and especially
|
||||
the tables of accurate values for testing.
|
||||
|
||||
We are grateful to Joel Guzman for helping us stress-test
|
||||
his
|
||||
[@http://www.boost.org/tools/quickbook/index.htm Boost.Quickbook]
|
||||
We are grateful to Joel Guzman for helping us stress-test his
|
||||
[@http://www.boost.org/tools/quickbook/index.htm Boost.Quickbook]
|
||||
program used to generate the html and pdf versions
|
||||
of this document, adding several new features en route.
|
||||
|
||||
@@ -48,17 +52,17 @@ Since browser support for rendering SVG is still not universal
|
||||
but can be made to work with
|
||||
[@http://www.adobe.com/svg/viewer/install/ Adobe's free SVG viewer] plugin),
|
||||
so the SVG files were batch converted to JPEG using
|
||||
[@http://www.inkscape.org/ Inkscape].
|
||||
[@http://www.inkscape.org/ Inkscape].
|
||||
|
||||
We are also indebted to Matthias Schabel for managing the formal Boost-review
|
||||
of this library, and to all the reviewers - including Guillaume Melquiond,
|
||||
Arnaldur Gylfason, John Phillips, Stephan Tolksdorf and Jeff Garland
|
||||
Arnaldur Gylfason, John Phillips, Stephan Tolksdorf and Jeff Garland
|
||||
- for their many helpful comments.
|
||||
|
||||
[endsect] [/section:credits Credits and Acknowledgements]
|
||||
|
||||
[/
|
||||
Copyright 2006, 2007, 2008 John Maddock and Paul A. Bristow.
|
||||
[/
|
||||
Copyright 2006, 2007, 2008, 2009 John Maddock and Paul A. Bristow.
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
@@ -13,6 +13,9 @@
|
||||
[include distributions/extreme_value.qbk]
|
||||
[include distributions/fisher.qbk]
|
||||
[include distributions/gamma.qbk]
|
||||
[include distributions/hypergeometric.qbk]
|
||||
[include distributions/laplace.qbk]
|
||||
[include distributions/logistic.qbk]
|
||||
[include distributions/lognormal.qbk]
|
||||
[include distributions/negative_binomial.qbk]
|
||||
[include distributions/nc_beta.qbk]
|
||||
|
||||
@@ -5,17 +5,17 @@
|
||||
[def __F_distrib [link math_toolkit.dist.dist_ref.dists.f_dist Fisher F Distribution]]
|
||||
[def __students_t_distrib [link math_toolkit.dist.dist_ref.dists.students_t_dist Students t Distribution]]
|
||||
|
||||
[def __handbook [@http://www.itl.nist.gov/div898/handbook/
|
||||
[def __handbook [@http://www.itl.nist.gov/div898/handbook/
|
||||
NIST/SEMATECH e-Handbook of Statistical Methods.]]
|
||||
|
||||
[section:stat_tut Statistical Distributions Tutorial]
|
||||
This library is centred around statistical distributions, this tutorial
|
||||
will give you an overview of what they are, how they can be used, and
|
||||
will give you an overview of what they are, how they can be used, and
|
||||
provides a few worked examples of applying the library to statistical tests.
|
||||
|
||||
[section:overview Overview]
|
||||
[section:overview Overview of Distributions]
|
||||
|
||||
[h4 Headers and Namespaces]
|
||||
[section:headers Headers and Namespaces]
|
||||
|
||||
All the code in this library is inside namespace boost::math.
|
||||
|
||||
@@ -27,27 +27,29 @@ For example, to use the Students-t distribution include either
|
||||
<boost/math/distributions/students_t.hpp> or
|
||||
<boost/math/distributions.hpp>
|
||||
|
||||
[h4 Distributions are Objects]
|
||||
[endsect] [/ section:headers Headers and Namespaces]
|
||||
|
||||
Each kind of distribution in this library is a class type.
|
||||
[section:objects Distributions are Objects]
|
||||
|
||||
[link math_toolkit.policy Policies] provide fine-grained control
|
||||
Each kind of distribution in this library is a class type - an object.
|
||||
|
||||
[link math_toolkit.policy Policies] provide fine-grained control
|
||||
of the behaviour of these classes, allowing the user to customise
|
||||
behaviour such as how errors are handled, or how the quantiles
|
||||
of discrete distribtions behave.
|
||||
|
||||
[tip If you are familiar with statistics libraries using functions,
|
||||
and 'Distributions as Objects' seem alien, see
|
||||
[link math_toolkit.dist.stat_tut.weg.nag_library the comparison to
|
||||
other statistics libraries.]
|
||||
[link math_toolkit.dist.stat_tut.weg.nag_library the comparison to
|
||||
other statistics libraries.]
|
||||
] [/tip]
|
||||
|
||||
Making distributions class types does two things:
|
||||
|
||||
* It encapsulates the kind of distribution in the C++ type system;
|
||||
so, for example, Students-t distributions are always a different C++ type from
|
||||
* It encapsulates the kind of distribution in the C++ type system;
|
||||
so, for example, Students-t distributions are always a different C++ type from
|
||||
Chi-Squared distributions.
|
||||
* The distribution objects store any parameters associated with the
|
||||
* The distribution objects store any parameters associated with the
|
||||
distribution: for example, the Students-t distribution has a
|
||||
['degrees of freedom] parameter that controls the shape of the distribution.
|
||||
This ['degrees of freedom] parameter has to be provided
|
||||
@@ -57,60 +59,63 @@ Although the distribution classes in this library are templates, there
|
||||
are typedefs on type /double/ that mostly take the usual name of the
|
||||
distribution
|
||||
(except where there is a clash with a function of the same name: beta and gamma,
|
||||
in which case using the default template arguments - `RealType = double` -
|
||||
in which case using the default template arguments - `RealType = double` -
|
||||
is nearly as convenient).
|
||||
Probably 95% of uses are covered by these typedefs:
|
||||
|
||||
using namespace boost::math;
|
||||
|
||||
|
||||
// Construct a students_t distribution with 4 degrees of freedom:
|
||||
students_t d1(4);
|
||||
|
||||
// Construct a double-precision beta distribution
|
||||
|
||||
// Construct a double-precision beta distribution
|
||||
// with parameters a = 10, b = 20
|
||||
beta_distribution<> d2(10, 20); // Note: _distribution<> suffix !
|
||||
|
||||
|
||||
If you need to use the distributions with a type other than `double`,
|
||||
then you can instantiate the template directly: the names of the
|
||||
then you can instantiate the template directly: the names of the
|
||||
templates are the same as the `double` typedef but with `_distribution`
|
||||
appended, for example: __students_t_distrib or __binomial_distrib:
|
||||
|
||||
// Construct a students_t distribution, of float type,
|
||||
// with 4 degrees of freedom:
|
||||
students_t_distribution<float> d3(4);
|
||||
|
||||
|
||||
// Construct a binomial distribution, of long double type,
|
||||
// with probability of success 0.3
|
||||
// and 20 trials in total:
|
||||
binomial_distribution<long double> d4(20, 0.3);
|
||||
|
||||
|
||||
The parameters passed to the distributions can be accessed via getter member
|
||||
functions:
|
||||
|
||||
d1.degrees_of_freedom(); // returns 4.0
|
||||
|
||||
d1.degrees_of_freedom(); // returns 4.0
|
||||
|
||||
This is all well and good, but not very useful so far. What we often want
|
||||
is to be able to calculate the /cumulative distribution functions/ and
|
||||
/quantiles/ etc for these distributions.
|
||||
|
||||
[h4 Generic operations common to all distributions are non-member functions]
|
||||
[endsect] [/section:objects Distributions are Objects]
|
||||
|
||||
|
||||
[section:generic Generic operations common to all distributions are non-member functions]
|
||||
|
||||
Want to calculate the PDF (Probability Density Function) of a distribution?
|
||||
No problem, just use:
|
||||
|
||||
pdf(my_dist, x); // Returns PDF (density) at point x of distribution my_dist.
|
||||
|
||||
|
||||
Or how about the CDF (Cumulative Distribution Function):
|
||||
|
||||
cdf(my_dist, x); // Returns CDF (integral from -infinity to point x)
|
||||
// of distribution my_dist.
|
||||
|
||||
|
||||
And quantiles are just the same:
|
||||
|
||||
quantile(my_dist, p); // Returns the value of the random variable x
|
||||
// such that cdf(my_dist, x) == p.
|
||||
|
||||
If you're wondering why these aren't member functions, it's to
|
||||
|
||||
If you're wondering why these aren't member functions, it's to
|
||||
make the library more easily extensible: if you want to add additional
|
||||
generic operations - let's say the /n'th moment/ - then all you have to
|
||||
do is add the appropriate non-member functions, overloaded for each
|
||||
@@ -124,9 +129,9 @@ If you want random numbers that are distributed in a specific way,
|
||||
for example in a uniform, normal or triangular,
|
||||
see [@http://www.boost.org/libs/random/ Boost.Random].
|
||||
|
||||
Whilst in principal there's nothing to prevent you from using the
|
||||
Whilst in principal there's nothing to prevent you from using the
|
||||
quantile function to convert a uniformly distributed random
|
||||
number to another distribution, in practice there are much more
|
||||
number to another distribution, in practice there are much more
|
||||
efficient algorithms available that are specific to random number generation.
|
||||
] [/tip Random numbers that approximate Quantiles of Distributions]
|
||||
|
||||
@@ -136,7 +141,7 @@ n (the number of trials) and p (the probability of success on one trial).
|
||||
The `binomial_distribution` constructor therefore has two parameters:
|
||||
|
||||
`binomial_distribution(RealType n, RealType p);`
|
||||
|
||||
|
||||
For this distribution the random variate is k: the number of successes observed.
|
||||
The probability density\/mass function (pdf) is therefore written as ['f(k; n, p)].
|
||||
|
||||
@@ -153,15 +158,15 @@ to separate the variate from the parameter(s) that defines the shape of the dist
|
||||
] [/tip Random Variates and Distribution Parameters]
|
||||
|
||||
As noted above the non-member function `pdf` has one parameter for the distribution object,
|
||||
and a second for the random variate. So taking our binomial distribution
|
||||
and a second for the random variate. So taking our binomial distribution
|
||||
example, we would write:
|
||||
|
||||
`pdf(binomial_distribution<RealType>(n, p), k);`
|
||||
|
||||
The ranges of random variate values that are permitted and are supported can be
|
||||
The ranges of random variate values that are permitted and are supported can be
|
||||
tested by using two functions `range` and `support`.
|
||||
|
||||
The distribution (effectively the random variate) is said to be 'supported'
|
||||
The distribution (effectively the random variate) is said to be 'supported'
|
||||
over a range that is
|
||||
[@http://en.wikipedia.org/wiki/Probability_distribution
|
||||
"the smallest closed set whose complement has probability zero"].
|
||||
@@ -180,15 +185,15 @@ If you are plotting the PDF, or otherwise calculating,
|
||||
zero is not the most useful value for the lower limit of supported, as we discovered.
|
||||
So for this, and similar distributions,
|
||||
we have decided it is most numerically useful to use
|
||||
the closest value to zero, min_value, for the limit of the supported range.
|
||||
the closest value to zero, min_value, for the limit of the supported range.
|
||||
(The `range` remains from zero, so you will still get `pdf(weibull, 0) == 0`).
|
||||
(Exponential and gamma distributions have similarly discontinuous functions).
|
||||
|
||||
Mathematically, the functions may make sense with an (+ or -) infinite value,
|
||||
but except for a few special cases (in the Normal and Cauchy distributions)
|
||||
this implementation limits random variates to finite values from the `max`
|
||||
this implementation limits random variates to finite values from the `max`
|
||||
to `min` for the `RealType`.
|
||||
(See [link math_toolkit.backgrounders.implementation.handling_of_floating_point_infinity
|
||||
(See [link math_toolkit.backgrounders.implementation.handling_of_floating_point_infinity
|
||||
Handling of Floating-Point Infinity] for rationale).
|
||||
|
||||
|
||||
@@ -196,23 +201,23 @@ Handling of Floating-Point Infinity] for rationale).
|
||||
|
||||
[*Discrete Probability Distributions]
|
||||
|
||||
Note that the [@http://en.wikipedia.org/wiki/Discrete_probability_distribution
|
||||
Note that the [@http://en.wikipedia.org/wiki/Discrete_probability_distribution
|
||||
discrete distributions], including the binomial, negative binomial, Poisson & Bernoulli,
|
||||
are all mathematically defined as discrete functions:
|
||||
that is to say the functions `cdf` and `pdf` are only defined for integral values
|
||||
that is to say the functions `cdf` and `pdf` are only defined for integral values
|
||||
of the random variate.
|
||||
|
||||
However, because the method of calculation often uses continuous functions
|
||||
it is convenient to treat them as if they were continuous functions,
|
||||
and permit non-integral values of their parameters.
|
||||
|
||||
Users wanting to enforce a strict mathematical model may use `floor`
|
||||
or `ceil` functions on the random variate prior to calling the distribution
|
||||
Users wanting to enforce a strict mathematical model may use `floor`
|
||||
or `ceil` functions on the random variate prior to calling the distribution
|
||||
function.
|
||||
|
||||
The quantile functions for these distributions are hard to specify
|
||||
in a manner that will satisfy everyone all of the time. The default
|
||||
behaviour is to return an integer result, that has been rounded
|
||||
behaviour is to return an integer result, that has been rounded
|
||||
/outwards/: that is to say, lower quantiles - where the probablity
|
||||
is less than 0.5 are rounded down, while upper quantiles - where
|
||||
the probability is greater than 0.5 - are rounded up. This behaviour
|
||||
@@ -221,17 +226,17 @@ coverage will be present in the central region, and /no more than/
|
||||
the requested coverage will be present in the tails.
|
||||
|
||||
This behaviour can be changed so that the quantile functions are rounded
|
||||
differently, or return a real-valued result using
|
||||
differently, or return a real-valued result using
|
||||
[link math_toolkit.policy.pol_overview Policies]. It is strongly
|
||||
recommended that you read the tutorial
|
||||
recommended that you read the tutorial
|
||||
[link math_toolkit.policy.pol_tutorial.understand_dis_quant
|
||||
Understanding Quantiles of Discrete Distributions] before
|
||||
using the quantile function on a discrete distribtion. The
|
||||
[link math_toolkit.policy.pol_ref.discrete_quant_ref reference docs]
|
||||
[link math_toolkit.policy.pol_ref.discrete_quant_ref reference docs]
|
||||
describe how to change the rounding policy
|
||||
for these distributions.
|
||||
|
||||
For similar reasons continuous distributions with parameters like
|
||||
For similar reasons continuous distributions with parameters like
|
||||
"degrees of freedom"
|
||||
that might appear to be integral, are treated as real values
|
||||
(and are promoted from integer to floating-point if necessary).
|
||||
@@ -239,16 +244,17 @@ In this case however, there are a small number of situations where non-integral
|
||||
degrees of freedom do have a genuine meaning.
|
||||
]
|
||||
|
||||
[endsect] [/ section:generic Generic operations common to all distributions are non-member functions]
|
||||
|
||||
[#complements]
|
||||
[h4 Complements are supported too]
|
||||
[section:complements Complements are supported too - and when to use them]
|
||||
|
||||
Often you don't want the value of the CDF, but its complement, which is
|
||||
to say `1-p` rather than `p`. You could calculate the CDF and subtract
|
||||
to say `1-p` rather than `p`. It is tempting to calculate the CDF and subtract
|
||||
it from `1`, but if `p` is very close to `1` then cancellation error
|
||||
will cause you to lose significant digits. In extreme cases, `p` may
|
||||
actually be equal to `1`, even though the true value of the complement is non-zero.
|
||||
will cause you to lose accuracy, perhaps totally.
|
||||
|
||||
[link why_complements See also ['"Why complements?"]]
|
||||
[link why_complements See below ['"Why and when to use complements?"]]
|
||||
|
||||
In this library, whenever you want to receive a complement, just wrap
|
||||
all the function arguments in a call to `complement(...)`, for example:
|
||||
@@ -262,7 +268,7 @@ Any function that accepts a probability as an argument can also accept a complem
|
||||
by wrapping all of its arguments in a call to `complement(...)`, for example:
|
||||
|
||||
students_t dist(5);
|
||||
|
||||
|
||||
for(double i = 10; i < 1e10; i *= 10)
|
||||
{
|
||||
// Calculate the quantile for a 1 in i chance:
|
||||
@@ -271,12 +277,12 @@ by wrapping all of its arguments in a call to `complement(...)`, for example:
|
||||
cout << "Quantile of students-t with 5 degrees of freedom\n"
|
||||
"for a 1 in " << i << " chance is " << t << endl;
|
||||
}
|
||||
|
||||
|
||||
[tip
|
||||
|
||||
[*Critical values are just quantiles]
|
||||
|
||||
Some texts talk about quantiles, others about critical values, the basic rule is:
|
||||
Some texts talk about quantiles, or percentiles, others about critical values, the basic rule is:
|
||||
|
||||
['Lower critical values] are the same as the quantile.
|
||||
|
||||
@@ -284,7 +290,7 @@ Some texts talk about quantiles, others about critical values, the basic rule is
|
||||
of the probability.
|
||||
|
||||
For example, suppose we have a Bernoulli process, giving rise to a binomial
|
||||
distribution with success ratio 0.1 and 100 trials in total. The
|
||||
distribution with success ratio 0.1 and 100 trials in total. The
|
||||
['lower critical value] for a probability of 0.05 is given by:
|
||||
|
||||
`quantile(binomial(100, 0.1), 0.05)`
|
||||
@@ -311,7 +317,7 @@ bit that didn't cancel out!
|
||||
Or to look at this another way: consider that we want the risk of falsely
|
||||
rejecting the null-hypothesis in the Student's t test to be 1 in 1 billion,
|
||||
for a sample size of 10,000.
|
||||
This gives a probability of 1 - 10[super -9], which is exactly 1 when
|
||||
This gives a probability of 1 - 10[super -9], which is exactly 1 when
|
||||
calculated at float precision. In this case calculating the quantile from
|
||||
the complement neatly solves the problem, so for example:
|
||||
|
||||
@@ -326,11 +332,32 @@ raises an overflow error, since it is the same as:
|
||||
`quantile(students_t(10000), 1)`
|
||||
|
||||
Which has no finite result.
|
||||
]
|
||||
|
||||
[h4 Parameters can be calculated]
|
||||
With all distributions, even for more reasonable probability
|
||||
(unless the value of p can be represented exactly in the floating-point type)
|
||||
the loss of accuracy quickly becomes significant if you simply calculate probability from 1 - p
|
||||
(because it will be mostly garbage digits for p ~ 1).
|
||||
|
||||
Sometimes it's the parameters that define the distribution that you
|
||||
So always avoid, for example, using a probability near to unity like 0.99999
|
||||
|
||||
`quantile(my_distribution, 0.99999)`
|
||||
|
||||
and instead use
|
||||
|
||||
`quantile(complement(my_distribution, 0.00001))`
|
||||
|
||||
since 1 - 0.99999 is not exactly equal to 0.00001 when using floating-point arithmetic.
|
||||
|
||||
This assumes that the 0.00001 value is either a constant,
|
||||
or can be computed by some manner other than subtracting 0.99999 from 1.
|
||||
|
||||
] [/ tip *Why bother with complements anyway?]
|
||||
|
||||
[endsect] [/ section:complements Complements are supported too - and why]
|
||||
|
||||
[section:parameters Parameters can be calculated]
|
||||
|
||||
Sometimes it's the parameters that define the distribution that you
|
||||
need to find. Suppose, for example, you have conducted a Students-t test
|
||||
for equal means and the result is borderline. Maybe your two samples
|
||||
differ from each other, or maybe they don't; based on the result
|
||||
@@ -346,7 +373,7 @@ of the distributions, for example:
|
||||
0.05, // maximum risk of falsely rejecting the null-hypothesis.
|
||||
0.1, // maximum risk of falsely failing to reject the null-hypothesis.
|
||||
0.13); // sample standard deviation
|
||||
|
||||
|
||||
Returns the number of degrees of freedom required to obtain a 95%
|
||||
probability that the observed differences in means is not down to
|
||||
chance alone. In the case that a borderline Students-t test result
|
||||
@@ -354,8 +381,10 @@ was previously obtained, this can be used to estimate how large the sample size
|
||||
would have to become before the observed difference was considered
|
||||
significant. It assumes, of course, that the sample mean and standard
|
||||
deviation are invariant with sample size.
|
||||
|
||||
[h4 Summary]
|
||||
|
||||
[endsect] [/ section:parameters Parameters can be calculated]
|
||||
|
||||
[section:summary Summary]
|
||||
|
||||
* Distributions are objects, which are constructed from whatever
|
||||
parameters the distribution may have.
|
||||
@@ -372,6 +401,7 @@ to be found from other information.
|
||||
|
||||
Now that you have the basics, the next section looks at some worked examples.
|
||||
|
||||
[endsect] [/section:summary Summary]
|
||||
[endsect] [/section:overview Overview]
|
||||
|
||||
[section:weg Worked Examples]
|
||||
@@ -386,6 +416,7 @@ Now that you have the basics, the next section looks at some worked examples.
|
||||
[include distributions/error_handling_example.qbk]
|
||||
[include distributions/find_location_and_scale.qbk]
|
||||
[include distributions/nag_library.qbk]
|
||||
[include distributions/c_sharp.qbk]
|
||||
[endsect] [/section:weg Worked Examples]
|
||||
|
||||
[include background.qbk]
|
||||
|
||||
20
doc/sf_and_dist/distributions/c_sharp.qbk
Normal file
@@ -0,0 +1,20 @@
|
||||
[section:c_sharp Using the Distributions from Within C#]
|
||||
|
||||
The distributions in this library can be used from the C# programming language
|
||||
when they are built using Microsofts Common Language Runtime option.
|
||||
|
||||
An example of this kind of usage is given in the
|
||||
[@../../distexplorer/html/index.html distribution_explorer] example:
|
||||
see =boost-root/libs/math/dot_net_example=
|
||||
for the source code: the application consists of a C++ dll that contains the
|
||||
actual distributions, and a C# GUI that allows you to explore their properties.
|
||||
|
||||
[endsect] [/section:c_sharp]
|
||||
|
||||
[/
|
||||
Copyright 2006 John Maddock and Paul A. Bristow.
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt).
|
||||
]
|
||||
|
||||
229
doc/sf_and_dist/distributions/hypergeometric.qbk
Normal file
@@ -0,0 +1,229 @@
|
||||
[section:hypergeometric_dist Hypergeometric Distribution]
|
||||
|
||||
``#include <boost/math/distributions/hypergeometric.hpp>``
|
||||
|
||||
namespace boost{ namespace math{
|
||||
|
||||
template <class RealType = double,
|
||||
class ``__Policy`` = ``__policy_class`` >
|
||||
class hypergeometric_distribution;
|
||||
|
||||
template <class RealType, class Policy>
|
||||
class hypergeometric_distribution
|
||||
{
|
||||
public:
|
||||
typedef RealType value_type;
|
||||
typedef Policy policy_type;
|
||||
// Construct:
|
||||
hypergeometric_distribution(unsigned r, unsigned n, unsigned N);
|
||||
// Accessors:
|
||||
unsigned total()const;
|
||||
unsigned defective()const;
|
||||
unsigned sample_count()const;
|
||||
};
|
||||
|
||||
typedef hypergeometric_distribution<> hypergeometric;
|
||||
|
||||
}} // namespaces
|
||||
|
||||
The hypergeometric distribution describes the number of "events" /k/
|
||||
from a sample /n/ drawn from a total population /N/ ['without replacement].
|
||||
|
||||
Imagine we have a sample of /N/ objects of which /r/ are "defective"
|
||||
and N-r are "not defective"
|
||||
(the terms "success\/failure" or "red\/blue" are also used). If we sample /n/
|
||||
items /without replacement/ then what is the probability that exactly
|
||||
/k/ items in the sample are defective? The answer is given by the pdf of the
|
||||
hypergeometric distribution `f(k; r, n, N)`, whilst the probability of
|
||||
/k/ defectives or fewer is given by F(k; r, n, N), where F(k) is the
|
||||
CDF of the hypergeometric distribution.
|
||||
|
||||
[note Unlike almost all of the other distributions in this library,
|
||||
the hypergeometric distribution is strictly discrete: it can not be
|
||||
extended to real valued arguments of its parameters or random variable.]
|
||||
|
||||
The following graph shows how the distribution changes as the proportion
|
||||
of "defective" items changes, while keeping the population and sample sizes
|
||||
constant:
|
||||
|
||||
[graph hypergeometric_pdf_1]
|
||||
|
||||
Note that since the distribution is symmetrical in parameters /n/ and /r/, if we
|
||||
change the sample size and keep the population and proportion "defective" the same
|
||||
then we obtain basically the same graphs:
|
||||
|
||||
[graph hypergeometric_pdf_2]
|
||||
|
||||
[h4 Member Functions]
|
||||
|
||||
hypergeometric_distribution(unsigned r, unsigned n, unsigned N);
|
||||
|
||||
Constructs a hypergeometric distribution with with a population of /N/ objects,
|
||||
of which /r/ are defective, and from which /n/ are sampled.
|
||||
|
||||
unsigned total()const;
|
||||
|
||||
Returns the total number of objects /N/.
|
||||
|
||||
unsigned defective()const;
|
||||
|
||||
Returns the number of objects /r/ in population /N/ which are defective.
|
||||
|
||||
unsigned sample_count()const;
|
||||
|
||||
Returns the number of objects /n/ which are sampled from the population /N/.
|
||||
|
||||
[h4 Non-member Accessors]
|
||||
|
||||
All the [link math_toolkit.dist.dist_ref.nmp usual non-member accessor functions]
|
||||
that are generic to all distributions are supported: __usual_accessors.
|
||||
|
||||
The domain of the random variable is the unsigned integers in the range
|
||||
\[max(0, n + r - N), min(n, r)\]. A __domain_error is raised if the
|
||||
random variable is outside this range, or is not an integral value.
|
||||
|
||||
[caution
|
||||
The quantile function will by default return an integer result that has been
|
||||
/rounded outwards/. That is to say lower quantiles (where the probability is
|
||||
less than 0.5) are rounded downward, and upper quantiles (where the probability
|
||||
is greater than 0.5) are rounded upwards. This behaviour
|
||||
ensures that if an X% quantile is requested, then /at least/ the requested
|
||||
coverage will be present in the central region, and /no more than/
|
||||
the requested coverage will be present in the tails.
|
||||
|
||||
This behaviour can be changed so that the quantile functions are rounded
|
||||
differently using
|
||||
[link math_toolkit.policy.pol_overview Policies]. It is strongly
|
||||
recommended that you read the tutorial
|
||||
[link math_toolkit.policy.pol_tutorial.understand_dis_quant
|
||||
Understanding Quantiles of Discrete Distributions] before
|
||||
using the quantile function on the Hypergeometric distribution. The
|
||||
[link math_toolkit.policy.pol_ref.discrete_quant_ref reference docs]
|
||||
describe how to change the rounding policy
|
||||
for these distributions.
|
||||
|
||||
However, note that the implementation method of the quantile function
|
||||
always returns an integral value, therefore attempting to use a __Policy
|
||||
that requires (or produces) a real valued result will result in a
|
||||
compile time error.
|
||||
] [/ caution]
|
||||
|
||||
|
||||
[h4 Accuracy]
|
||||
|
||||
For small N such that
|
||||
`N < boost::math::max_factorial<RealType>::value` then table based
|
||||
lookup of the results gives an accuracy to a few epsilon.
|
||||
`boost::math::max_factorial<RealType>::value` is 170 at double or long double
|
||||
precision.
|
||||
|
||||
For larger N such that `N < boost::math::prime(boost::math::max_prime)`
|
||||
then only basic arithmetic is required for the calculation
|
||||
and the accuracy is typically < 20 epsilon. This takes care of N
|
||||
up to 104729.
|
||||
|
||||
For `N > boost::math::prime(boost::math::max_prime)` then accuracy quickly
|
||||
degrades, with 5 or 6 decimal digits being lost for N = 110000.
|
||||
|
||||
In general for very large N, the user should expect to loose log[sub 10]N
|
||||
decimal digits of precision during the calculation, with the results
|
||||
becoming meaningless for N >= 10[super 15].
|
||||
|
||||
[h4 Testing]
|
||||
|
||||
There are three sets of tests: our implementation is tested against a table of values
|
||||
produced by Mathematica's implementation of this distribution. We also sanity check
|
||||
our implementation against some spot values computed using the online calculator
|
||||
here [@http://stattrek.com/Tables/Hypergeometric.aspx http://stattrek.com/Tables/Hypergeometric.aspx].
|
||||
Finally we test accuracy against some high precision test data using
|
||||
this implementation and NTL::RR.
|
||||
|
||||
[h4 Implementation]
|
||||
|
||||
The PDF can be calculated directly using the formula:
|
||||
|
||||
[equation hypergeometric1]
|
||||
|
||||
However, this can only be used directly when the largest of the factorials
|
||||
is guaranteed not to overflow the floating point representation used.
|
||||
This formula is used directly when `N < max_factorial<RealType>::value`
|
||||
in which case table lookup of the factorials gives a rapid and accurate
|
||||
implementation method.
|
||||
|
||||
For larger /N/ the method described in
|
||||
"An Accurate Computation of the Hypergeometric Distribution Function",
|
||||
Trong Wu, ACM Transactions on Mathematical Software, Vol. 19, No. 1,
|
||||
March 1993, Pages 33-43 is used. The method relies on the fact that
|
||||
there is an easy method for factorising a factorial into the product
|
||||
of prime numbers:
|
||||
|
||||
[equation hypergeometric2]
|
||||
|
||||
Where p[sub i] is the i'th prime number, and e[sub i] is a small
|
||||
positive integer or zero, which can be calculated via:
|
||||
|
||||
[equation hypergeometric3]
|
||||
|
||||
Further we can combine the factorials in the expression for the PDF
|
||||
to yield the PDF directly as the product of prime numbers:
|
||||
|
||||
[equation hypergeometric4]
|
||||
|
||||
With this time the exponents e[sub i] being either positive, negative
|
||||
or zero. Indeed such a degree of cancellation occurs in the calculation
|
||||
of the e[sub i] that many are zero, and typically most have a magnitude
|
||||
or no more than 1 or 2.
|
||||
|
||||
Calculation of the product of the primes requires some care to prevent
|
||||
numerical overflow, we use a novel recursive method which splits the
|
||||
calculation into a series of sub-products, with a new sub-product
|
||||
started each time the next multiplication would cause either overflow
|
||||
or underflow. The sub-products are stored in a linked list on the
|
||||
program stack, and combined in an order that will guarantee no overflow
|
||||
or unnecessary-underflow once the last sub-product has been calculated.
|
||||
|
||||
This method can be used as long as N is smaller than the largest prime
|
||||
number we have stored in our table of primes (currently 104729). The method
|
||||
is relatively slow (calculating the exponents requires the most time), but
|
||||
requires only a small number of arithmetic operations to
|
||||
calculate the result (indeed there is no shorter method involving only basic
|
||||
arithmetic once the exponents have been found), the method is therefore
|
||||
much more accurate than the alternatives.
|
||||
|
||||
For much larger N, we can calculate the PDF from the factorials using
|
||||
either lgamma, or by directly combining lanczos approximations to avoid
|
||||
calculating via logarithms. We use the latter method, as it is usually
|
||||
1 or 2 decimal digits more accurate than computing via logarithms with
|
||||
lgamma. However, in this area where N > 104729, the user should expect
|
||||
to loose around log[sub 10]N decimal digits during the calculation in
|
||||
the worst case.
|
||||
|
||||
The CDF and its complement is calculated by directly summing the PDF's.
|
||||
We start by deciding whether the CDF, or its complement, is likely to be
|
||||
the smaller of the two and then calculate the PDF at /k/ (or /k+1/ if we're
|
||||
calculating the complement) and calculate successive PDF values via the
|
||||
recurrence relations:
|
||||
|
||||
[equation hypergeometric5]
|
||||
|
||||
Until we either reach the end of the distributions domain, or the next
|
||||
PDF value to be summed would be too small to affect the result.
|
||||
|
||||
The quantile is calculated in a similar manner to the CDF: we first guess
|
||||
which end of the distribution we're nearer to, and then sum PDFs starting
|
||||
from the end of the distribution this time, until we have some value /k/ that
|
||||
gives the required CDF.
|
||||
|
||||
The median is simply the quantile at 0.5, and the remaining properties are
|
||||
calculated via:
|
||||
|
||||
[equation hypergeometric6]
|
||||
|
||||
[endsect]
|
||||
|
||||
[/ hypergeometric.qbk
|
||||
Copyright 2008 John Maddock.
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt).
|
||||
]
|
||||
145
doc/sf_and_dist/distributions/laplace.qbk
Normal file
@@ -0,0 +1,145 @@
|
||||
[section:laplace_dist Laplace Distribution]
|
||||
|
||||
``#include <boost/math/distributions/laplace.hpp>``
|
||||
|
||||
namespace boost{ namespace math{
|
||||
|
||||
template <class RealType = double,
|
||||
class ``__Policy`` = ``__policy_class`` >
|
||||
class laplace_distribution;
|
||||
|
||||
typedef laplace_distribution<> laplace;
|
||||
|
||||
template <class RealType, class ``__Policy``>
|
||||
class laplace_distribution
|
||||
{
|
||||
public:
|
||||
typedef RealType value_type;
|
||||
typedef Policy policy_type;
|
||||
// Construct:
|
||||
laplace_distribution(RealType location = 0, RealType scale = 1);
|
||||
// Accessors:
|
||||
RealType location()const;
|
||||
RealType scale()const;
|
||||
};
|
||||
|
||||
}} // namespaces
|
||||
|
||||
Laplace distribution is the distribution of differences between two independent variates
|
||||
with identical exponential distributions (Abramowitz and Stegun 1972, p. 930).
|
||||
It is also called the double exponential distribution.
|
||||
|
||||
[/ Wikipedia definition is The difference between two independent identically distributed
|
||||
exponential random variables is governed by a Laplace distribution.]
|
||||
|
||||
For location parameter [mu][space] and scale parameter [sigma][space] it is defined by the
|
||||
probability density function:
|
||||
|
||||
[equation laplace_pdf]
|
||||
|
||||
The location and scale parameters are equivalent to the mean and
|
||||
standard deviation of the normal or Gaussian distribution.
|
||||
|
||||
The following graph illustrates the effect of the location
|
||||
parameter [mu][space] on the PDF. Note that the range of the random
|
||||
variable remains \[-[infin],+[infin]\] irrespective of the value of the
|
||||
location parameter:
|
||||
|
||||
[graph laplace_pdf_mu]
|
||||
|
||||
The next graph illustrates the effect of the scale parameter [sigma][space] on the PDF:
|
||||
|
||||
[graph laplace_pdf_sigma]
|
||||
|
||||
[h4 Member Functions]
|
||||
|
||||
laplace_distribution(RealType location = 0, RealType scale = 1);
|
||||
|
||||
Constructs a laplace distribution with location /location/ and
|
||||
scale /scale/.
|
||||
|
||||
The location parameter is the same as the mean of the random variate.
|
||||
|
||||
The scale parameter is proportional to the standard deviation of the random variate.
|
||||
|
||||
Requires that the scale parameter is greater than zero, otherwise calls
|
||||
__domain_error.
|
||||
|
||||
RealType location()const;
|
||||
|
||||
Returns the /location/ parameter of this distribution.
|
||||
|
||||
RealType scale()const;
|
||||
|
||||
Returns the /scale/ parameter of this distribution.
|
||||
|
||||
[h4 Non-member Accessors]
|
||||
|
||||
All the [link math_toolkit.dist.dist_ref.nmp usual non-member accessor functions] that are generic to all
|
||||
distributions are supported: __usual_accessors.
|
||||
|
||||
The domain of the random variable is \[-[infin],+[infin]\].
|
||||
|
||||
[h4 Accuracy]
|
||||
|
||||
The laplace distribution is implemented in terms of the
|
||||
standard library log and exp functions and as such should have very small errors.
|
||||
|
||||
[h4 Implementation]
|
||||
|
||||
In the following table [mu] is the location parameter of the distribution,
|
||||
[sigma] is its scale parameter, /x/ is the random variate, /p/ is the probability
|
||||
and its complement /q = 1-p/.
|
||||
|
||||
[table
|
||||
[[Function][Implementation Notes]]
|
||||
[[pdf][Using the relation: pdf = e[super -abs(x-[mu]) \/ [sigma]] \/ (2 * [sigma]) ]]
|
||||
[[cdf][Using the relations:
|
||||
|
||||
x < [mu] : p = e[super (x-[mu])/[sigma] ] \/ [sigma]
|
||||
|
||||
x >= [mu] : p = 1 - e[super ([mu]-x)/[sigma] ] \/ [sigma]
|
||||
]]
|
||||
[[cdf complement][Using the relation:
|
||||
|
||||
-x < [mu] : q = e[super (-x-[mu])/[sigma] ] \/ [sigma]
|
||||
|
||||
-x >= [mu] : q = 1 - e[super ([mu]+x)/[sigma] ] \/ [sigma]
|
||||
]]
|
||||
[[quantile][Using the relations:
|
||||
|
||||
p < 0.5 : x = [mu] + [sigma] * log(2*p)
|
||||
|
||||
p >= 0.5 : x = [mu] - [sigma] * log(2-2*p)
|
||||
]]
|
||||
[[quantile from the complement][Using the relation:
|
||||
|
||||
q > 0.5: x = [mu] + [sigma]*log(2-2*q)
|
||||
|
||||
q <=0.5: x = [mu] - [sigma]*log( 2*q )
|
||||
]]
|
||||
[[mean][[mu]]]
|
||||
[[variance][2 * [sigma][super 2] ]]
|
||||
[[mode][[mu]]]
|
||||
[[skewness][0]]
|
||||
[[kurtosis][6]]
|
||||
[[kurtosis excess][3]]
|
||||
]
|
||||
|
||||
[h4 References]
|
||||
|
||||
* [@http://mathworld.wolfram.com/LaplaceDistribution.html Weisstein, Eric W. "Laplace Distribution."] From MathWorld--A Wolfram Web Resource.
|
||||
|
||||
* [@http://en.wikipedia.org/wiki/Laplace_distribution Laplace Distribution]
|
||||
|
||||
* M. Abramowitz and I. A. Stegun, Handbook of Mathematical Functions, 1972, p. 930.
|
||||
|
||||
[endsect][/section:laplace_dist laplace]
|
||||
|
||||
[/
|
||||
Copyright 2008, 2009 John Maddock, Paul A. Bristow and M.A. (Thijs) van den Berg.
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt).
|
||||
]
|
||||
|
||||
103
doc/sf_and_dist/distributions/logistic.qbk
Normal file
@@ -0,0 +1,103 @@
|
||||
[section:logistic_dist Logistic Distribution]
|
||||
|
||||
``#include <boost/math/distributions/logistic.hpp>``
|
||||
|
||||
namespace boost{ namespace math{
|
||||
|
||||
template <class RealType = double,
|
||||
class ``__Policy`` = ``__policy_class`` >
|
||||
class logistic_distribution;
|
||||
|
||||
template <class RealType, class Policy>
|
||||
class logistic_distribution
|
||||
{
|
||||
public:
|
||||
typedef RealType value_type;
|
||||
typedef Policy policy_type;
|
||||
// Construct:
|
||||
logistic_distribution(RealType location = 0, RealType scale = 1);
|
||||
// Accessors:
|
||||
RealType location()const; // location.
|
||||
RealType scale()const; // scale.
|
||||
|
||||
};
|
||||
|
||||
typedef logistic_distribution<> logistic;
|
||||
|
||||
}} // namespaces
|
||||
|
||||
The logistic distribution is a continous probability distribution.
|
||||
It has two parameters - location and scale. The cumulative distribution
|
||||
function of the logistic distribution appears in logistic regression
|
||||
and feedforward neural networks. Among other applications,
|
||||
United State Chess Federation and FIDE use it to calculate chess ratings.
|
||||
|
||||
The following graph shows how the distribution changes as the
|
||||
parameters change:
|
||||
|
||||
[graph logistic_pdf]
|
||||
|
||||
[h4 Member Functions]
|
||||
|
||||
logistic_distribution(RealType u = 0, RealType s = 1);
|
||||
|
||||
Constructs a logistic distribution with location /u/ and scale /s/.
|
||||
|
||||
Requires `scale > 0`, otherwise a __domain_error is raised.
|
||||
|
||||
RealType location()const;
|
||||
|
||||
Returns the location of this distribution.
|
||||
|
||||
RealType scale()const;
|
||||
|
||||
Returns the scale of this distribution.
|
||||
|
||||
[h4 Non-member Accessors]
|
||||
|
||||
All the [link math_toolkit.dist.dist_ref.nmp usual non-member accessor functions]
|
||||
that are generic to all distributions are supported: __usual_accessors.
|
||||
|
||||
The domain of the random variable is \[-\[max_value\], +\[min_value\]\].
|
||||
However, the pdf and cdf support inputs of +[infin] and -[infin]
|
||||
as special cases if RealType permits.
|
||||
|
||||
At `p=1` and `p=0`, the quantile function returns the result of
|
||||
+__overflow_error and -__overflow_error, while the complement
|
||||
quantile function returns the result of -__overflow_error and
|
||||
+__overflow_error respectively.
|
||||
|
||||
[h4 Accuracy]
|
||||
|
||||
The logistic distribution is implemented in terms of the `std::exp`
|
||||
and the `std::log` functions, so its accuracy is related to the
|
||||
accurate implementations of those functions on a given platform.
|
||||
When calculating the quantile with a non-zero /position/ parameter
|
||||
catastrophic cancellation errors can occur:
|
||||
in such cases, only a low /absolute error/ can be guarenteed.
|
||||
|
||||
[h4 Implementation]
|
||||
|
||||
[table
|
||||
[[Function][Implementation Notes]]
|
||||
[[pdf][Using the relation: pdf = e[super -(x-u)/s] / (s*(1+e[super -(x-u)/s])[super 2])]]
|
||||
[[cdf][Using the relation: p = 1/(1+e[super -(x-u)/s])]]
|
||||
[[cdf complement][Using the relation: q = 1/(1+e[super (x-u)/s])]]
|
||||
[[quantile][Using the relation: x = u - s*log(1/p-1)]]
|
||||
[[quantile from the complement][Using the relation: x = u + s*log(p/1-p)]]
|
||||
[[mean][u]]
|
||||
[[mode][The same as the mean.]]
|
||||
[[skewness][0]]
|
||||
[[kurtosis excess][6/5]]
|
||||
[[variance][ ([pi]*s)[super 2] / 3]]
|
||||
]
|
||||
|
||||
[endsect]
|
||||
|
||||
[/ logistic.qbk
|
||||
Copyright 2006, 2007 John Maddock and Paul A. Bristow.
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt).
|
||||
]
|
||||
|
||||
@@ -3,41 +3,42 @@
|
||||
|
||||
``#include <boost/math/distributions/pareto.hpp>``
|
||||
|
||||
namespace boost{ namespace math{
|
||||
|
||||
template <class RealType = double,
|
||||
namespace boost{ namespace math{
|
||||
|
||||
template <class RealType = double,
|
||||
class ``__Policy`` = ``__policy_class`` >
|
||||
class pareto_distribution;
|
||||
|
||||
|
||||
typedef pareto_distribution<> pareto;
|
||||
|
||||
|
||||
template <class RealType, class ``__Policy``>
|
||||
class pareto_distribution
|
||||
{
|
||||
public:
|
||||
typedef RealType value_type;
|
||||
// Constructor:
|
||||
pareto_distribution(RealType location = 1, RealType shape = 1)
|
||||
pareto_distribution(RealType scale = 1, RealType shape = 1)
|
||||
// Accessors:
|
||||
RealType location()const;
|
||||
RealType scale()const;
|
||||
RealType shape()const;
|
||||
};
|
||||
|
||||
|
||||
}} // namespaces
|
||||
|
||||
|
||||
The [@http://en.wikipedia.org/wiki/pareto_distribution Pareto distribution]
|
||||
is a continuous distribution with the
|
||||
is a continuous distribution with the
|
||||
[@http://en.wikipedia.org/wiki/Probability_density_function probability density function (pdf)]:
|
||||
|
||||
f(x; [alpha], [beta]) = [alpha][beta][super [alpha]] / x[super [alpha]+ 1]
|
||||
|
||||
For shape parameter [alpha][space] > 0, and location parameter [beta][space] > 0, and [alpha][space] > 0.
|
||||
For shape parameter [alpha][space] > 0, and scale parameter [beta][space] > 0.
|
||||
If x < [beta][space], the pdf is zero.
|
||||
|
||||
The [@http://mathworld.wolfram.com/paretoDistribution.html Pareto distribution]
|
||||
The [@http://mathworld.wolfram.com/ParetoDistribution.html Pareto distribution]
|
||||
often describes the larger compared to the smaller.
|
||||
A classic example is that 80% of the wealth is owned by 20% of the population.
|
||||
|
||||
The following graph illustrates how the PDF varies with the location parameter [beta]:
|
||||
The following graph illustrates how the PDF varies with the scale parameter [beta]:
|
||||
|
||||
[graph pareto_pdf1]
|
||||
|
||||
@@ -48,23 +49,23 @@ And this graph illustrates how the PDF varies with the shape parameter [alpha]:
|
||||
|
||||
[h4 Related distributions]
|
||||
|
||||
|
||||
|
||||
[h4 Member Functions]
|
||||
|
||||
pareto_distribution(RealType location = 1, RealType shape = 1);
|
||||
|
||||
Constructs a [@http://en.wikipedia.org/wiki/pareto_distribution
|
||||
pareto_distribution(RealType scale = 1, RealType shape = 1);
|
||||
|
||||
Constructs a [@http://en.wikipedia.org/wiki/pareto_distribution
|
||||
pareto distribution] with shape /shape/ and scale /scale/.
|
||||
|
||||
Requires that the /shape/ and /scale/ parameters are both greater than zero,
|
||||
Requires that the /shape/ and /scale/ parameters are both greater than zero,
|
||||
otherwise calls __domain_error.
|
||||
|
||||
RealType location()const;
|
||||
|
||||
Returns the /location/ parameter of this distribution.
|
||||
|
||||
RealType scale()const;
|
||||
|
||||
Returns the /scale/ parameter of this distribution.
|
||||
|
||||
RealType shape()const;
|
||||
|
||||
|
||||
Returns the /shape/ parameter of this distribution.
|
||||
|
||||
[h4 Non-member Accessors]
|
||||
@@ -72,19 +73,20 @@ Returns the /shape/ parameter of this distribution.
|
||||
All the [link math_toolkit.dist.dist_ref.nmp usual non-member accessor functions] that are generic to all
|
||||
distributions are supported: __usual_accessors.
|
||||
|
||||
The supported domain of the random variable is \[location, [infin]\].
|
||||
The supported domain of the random variable is \[scale, [infin]\].
|
||||
|
||||
[h4 Accuracy]
|
||||
|
||||
The pareto distribution is implemented in terms of the
|
||||
The Pareto distribution is implemented in terms of the
|
||||
standard library `exp` functions plus __expm1
|
||||
and as such should have very low error rates
|
||||
except when probability is very close to unity.
|
||||
and so should have very small errors, usually only a few epsilon.
|
||||
|
||||
If probability is near to unity (or the complement of a probability near zero) see also __why_complements.
|
||||
|
||||
[h4 Implementation]
|
||||
|
||||
In the following table [alpha][space] is the shape parameter of the distribution, and
|
||||
[beta][space] is its location parameter, /x/ is the random variate, /p/ is the probability
|
||||
[beta][space] is its scale parameter, /x/ is the random variate, /p/ is the probability
|
||||
and its complement /q = 1-p/.
|
||||
|
||||
[table
|
||||
@@ -92,24 +94,26 @@ and its complement /q = 1-p/.
|
||||
[[pdf][Using the relation: pdf p = [alpha][beta][super [alpha]]/x[super [alpha] +1] ]]
|
||||
[[cdf][Using the relation: cdf p = 1 - ([beta][space] / x)[super [alpha]] ]]
|
||||
[[cdf complement][Using the relation: q = 1 - p = -([beta][space] / x)[super [alpha]] ]]
|
||||
[[quantile][Using the relation: x = [alpha] / (1 - p)[super 1/[beta]] ]]
|
||||
[[quantile from the complement][Using the relation: x = [alpha] / (q)[super 1/[beta]] ]]
|
||||
[[quantile][Using the relation: x = [beta] / (1 - p)[super 1/[alpha]] ]]
|
||||
[[quantile from the complement][Using the relation: x = [beta] / (q)[super 1/[alpha]] ]]
|
||||
[[mean][[alpha][beta] / ([beta] - 1) ]]
|
||||
[[variance][[beta][alpha][super 2] / ([beta] - 1)[super 2] ([beta] - 2) ]]
|
||||
[[mode][[alpha]]]
|
||||
[[skewness][Refer to [@http://mathworld.wolfram.com/paretoDistribution.html Weisstein, Eric W. "Pareto Distribution." From MathWorld--A Wolfram Web Resource.] ]]
|
||||
[[kurtosis][Refer to [@http://mathworld.wolfram.com/paretoDistribution.html Weisstein, Eric W. "Pareto Distribution." From MathWorld--A Wolfram Web Resource.] ]]
|
||||
[[kurtosis excess][Refer to [@http://mathworld.wolfram.com/paretoDistribution.html Weisstein, Eric W. "pareto Distribution." From MathWorld--A Wolfram Web Resource.] ]]
|
||||
[[skewness][Refer to [@http://mathworld.wolfram.com/ParetoDistribution.html Weisstein, Eric W. "Pareto Distribution." From MathWorld--A Wolfram Web Resource.] ]]
|
||||
[[kurtosis][Refer to [@http://mathworld.wolfram.com/ParetoDistribution.html Weisstein, Eric W. "Pareto Distribution." From MathWorld--A Wolfram Web Resource.] ]]
|
||||
[[kurtosis excess][Refer to [@http://mathworld.wolfram.com/ParetoDistribution.html Weisstein, Eric W. "pareto Distribution." From MathWorld--A Wolfram Web Resource.] ]]
|
||||
]
|
||||
|
||||
[h4 References]
|
||||
* [@http://en.wikipedia.org/wiki/pareto_distribution Pareto Distribution]
|
||||
* [@http://mathworld.wolfram.com/paretoDistribution.html Weisstein, Eric W. "Pareto Distribution." From MathWorld--A Wolfram Web Resource.]
|
||||
* Handbook of Statistical Distributions with Applications, K Krishnamoorthy, ISBN 1-58488-635-8, Chapter 23, pp 257 - 267.
|
||||
(Note the meaning of a and b is reversed in Wolfram and Krishnamoorthy).
|
||||
|
||||
[endsect][/section:pareto pareto]
|
||||
|
||||
[/
|
||||
Copyright 2006 John Maddock and Paul A. Bristow.
|
||||
[/
|
||||
Copyright 2006, 2009 John Maddock and Paul A. Bristow.
|
||||
Distributed under the Boost Software License, Version 1.0.
|
||||
(See accompanying file LICENSE_1_0.txt or copy at
|
||||
http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
@@ -509,14 +509,13 @@ Confidence Estimated Estimated
|
||||
Value (%) Sample Size Sample Size
|
||||
(one sided test) (two sided test)
|
||||
_______________________________________________________________
|
||||
50.000 2 3
|
||||
75.000 4 5
|
||||
90.000 8 10
|
||||
95.000 12 14
|
||||
99.000 21 23
|
||||
99.900 36 38
|
||||
99.990 51 54
|
||||
99.999 67 69
|
||||
75.000 3 4
|
||||
90.000 7 9
|
||||
95.000 11 13
|
||||
99.000 20 22
|
||||
99.900 35 37
|
||||
99.990 50 53
|
||||
99.999 66 68
|
||||
''']
|
||||
|
||||
So in this case, many more measurements would have had to be made,
|
||||
|
||||
@@ -257,11 +257,6 @@ would be complex).
|
||||
|
||||
[optional_policy]
|
||||
|
||||
[caution In addition, the region where ['n > 1] and [phi][space] ['is not in the range]
|
||||
\[0, [pi]\/2\] is currently unsupported and returns the result of __domain_error.
|
||||
For this reason it is recomended that you keep [phi][space] inside its "natural" range
|
||||
of \[0, [pi]\/2\].]
|
||||
|
||||
template <class T1, class T2>
|
||||
``__sf_result`` ellint_3(T1 k, T2 n);
|
||||
|
||||
@@ -275,7 +270,7 @@ Returns the complete elliptic integral of the first kind ['[Pi](n, k)]:
|
||||
Requires ['-1 <= k <= 1] and ['n < 1], otherwise returns the
|
||||
result of __domain_error (outside this range the result would be complex).
|
||||
|
||||
[opitonal_policy]
|
||||
[optional_policy]
|
||||
|
||||
[heading Accuracy]
|
||||
|
||||
@@ -322,7 +317,13 @@ Then the relations:
|
||||
|
||||
['[Pi](n, -[phi], k) = -[Pi](n, [phi], k)]
|
||||
|
||||
['[Pi](n, [phi]+m[pi], k) = [Pi](n, [phi], k) + 2m[Pi](n, k)]
|
||||
['[Pi](n, [phi]+m[pi], k) = [Pi](n, [phi], k) + 2m[Pi](n, k) ; n <= 1]
|
||||
|
||||
['[Pi](n, [phi]+m[pi], k) = [Pi](n, [phi], k) ; n > 1]
|
||||
[footnote I haven't been able to find a literature reference for this
|
||||
relation, but it appears to be the convention used by Mathematica.
|
||||
Intuitively the first ['2 * m * [Pi](n, k)] terms cancel out as the
|
||||
derivative alternates between +[infin] and -[infin].]
|
||||
|
||||
are used to move [phi][space] to the range \[0, [pi]\/2\].
|
||||
|
||||
@@ -335,9 +336,4 @@ and
|
||||
|
||||
[equation ellint26]
|
||||
|
||||
The remaining problem area occurs when n > 1 and [phi][space] is outside
|
||||
the range \[0, [pi]\/2\]. In this range the reduction formula for
|
||||
large [phi][space] can no longer be applied. Likewise the identities 17.7.7/8
|
||||
in A&S for reducing n to the range \[0,1\] appear to be no longer applicable.
|
||||
|
||||
[endsect]
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
#
|
||||
# Paths to tools come first, change these to match your system:
|
||||
#
|
||||
math2svg='C:\download\open\SVGMath-0.3.1\math2svg.py'
|
||||
python=/cygdrive/c/Python25/python.exe
|
||||
math2svg='d:\download\open\SVGMath-0.3.1\math2svg.py'
|
||||
python=/cygdrive/c/Python26/python.exe
|
||||
inkscape=/cygdrive/c/progra~1/Inkscape/inkscape
|
||||
# Image DPI:
|
||||
dpi=120
|
||||
@@ -29,3 +29,4 @@ done
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
117
doc/sf_and_dist/equations/hypergeometric1.mml
Normal file
@@ -0,0 +1,117 @@
|
||||
<?xml version='1.0'?>
|
||||
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN'
|
||||
'http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd'
|
||||
[<!ENTITY mathml 'http://www.w3.org/1998/Math/MathML'>]>
|
||||
<html xmlns='http://www.w3.org/1999/xhtml'>
|
||||
<head><title>hypergeometric1</title>
|
||||
<!-- MathML created with MathCast Equation Editor version 0.89 -->
|
||||
</head>
|
||||
<body>
|
||||
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
|
||||
<mrow>
|
||||
<mi>f</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>k</mi>
|
||||
<mo>;</mo>
|
||||
<mi>r</mi>
|
||||
<mo>,</mo>
|
||||
<mi>n</mi>
|
||||
<mo>,</mo>
|
||||
<mi>N</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<mfrac>
|
||||
<mrow>
|
||||
<mi>n</mi>
|
||||
<mo>!</mo>
|
||||
<mi>r</mi>
|
||||
<mo>!</mo>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>n</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mo>!</mo>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>r</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mo>!</mo>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>!</mo>
|
||||
<mi>k</mi>
|
||||
<mo>!</mo>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>n</mi>
|
||||
<mo>−</mo>
|
||||
<mi>k</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mo>!</mo>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>r</mi>
|
||||
<mo>−</mo>
|
||||
<mi>k</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mo>!</mo>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>n</mi>
|
||||
<mo>−</mo>
|
||||
<mi>r</mi>
|
||||
<mo>+</mo>
|
||||
<mi>k</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mo>!</mo>
|
||||
</mrow>
|
||||
</mfrac>
|
||||
<mspace width="1em"/>
|
||||
<mo>;</mo>
|
||||
<mspace width="1em"/>
|
||||
<mi>max</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mn>0,</mn>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>r</mi>
|
||||
<mo>−</mo>
|
||||
<mi>n</mi>
|
||||
<mo>+</mo>
|
||||
<mi>k</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mo><</mo>
|
||||
<mo>=</mo>
|
||||
<mi>k</mi>
|
||||
<mo><</mo>
|
||||
<mo>=</mo>
|
||||
<mi>min</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>r</mi>
|
||||
<mo>,</mo>
|
||||
<mi>n</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
</math>
|
||||
</body>
|
||||
</html>
|
||||
BIN
doc/sf_and_dist/equations/hypergeometric1.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
2
doc/sf_and_dist/equations/hypergeometric1.svg
Normal file
|
After Width: | Height: | Size: 17 KiB |
50
doc/sf_and_dist/equations/hypergeometric2.mml
Normal file
@@ -0,0 +1,50 @@
|
||||
<?xml version='1.0'?>
|
||||
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN'
|
||||
'http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd'
|
||||
[<!ENTITY mathml 'http://www.w3.org/1998/Math/MathML'>]>
|
||||
<html xmlns='http://www.w3.org/1999/xhtml'>
|
||||
<head><title>hypergeometric2</title>
|
||||
<!-- MathML created with MathCast Equation Editor version 0.89 -->
|
||||
</head>
|
||||
<body>
|
||||
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>!</mo>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<munderover>
|
||||
<mo>∏</mo>
|
||||
<mrow>
|
||||
<mi>i</mi>
|
||||
<mo>=</mo>
|
||||
<mn>0</mn>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<msub>
|
||||
<mi>p</mi>
|
||||
<mi>i</mi>
|
||||
</msub>
|
||||
<mo><</mo>
|
||||
<mi>N</mi>
|
||||
</mrow>
|
||||
</munderover>
|
||||
<msup>
|
||||
<mrow>
|
||||
<msub>
|
||||
<mi>p</mi>
|
||||
<mi>i</mi>
|
||||
</msub>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<msub>
|
||||
<mi>e</mi>
|
||||
<mi>i</mi>
|
||||
</msub>
|
||||
</mrow>
|
||||
</msup>
|
||||
</mrow>
|
||||
</math>
|
||||
</body>
|
||||
</html>
|
||||
BIN
doc/sf_and_dist/equations/hypergeometric2.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
2
doc/sf_and_dist/equations/hypergeometric2.svg
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg:svg xmlns="http://www.w3.org/1998/Math/MathML" xmlns:svg="http://www.w3.org/2000/svg" height="34.879883pt" width="86.888676pt" xmlns:svgmath="http://www.grigoriev.ru/svgmath" viewBox="0 -22.068594 86.888676 34.879883"><svg:metadata><svgmath:metrics top="34.8798828125" axis="16.7956640625" baseline="12.8112890625" bottom="0.0"/></svg:metadata><svg:text font-size="12.000000" text-anchor="middle" y="0.000000" x="4.335938" font-family="Times New Roman" font-style="italic" fill="black">N</svg:text><svg:g transform="translate(10.807941, -3.984375)"><svg:text font-size="12.000000" text-anchor="middle" y="3.984375" x="1.998047" font-family="Times New Roman" fill="black">!</svg:text></svg:g><svg:g transform="translate(14.804035, 0.000000)"/><svg:g transform="translate(30.137371, -3.984375)"><svg:text font-size="12.000000" text-anchor="middle" y="3.984375" x="3.383789" font-family="Times New Roman" fill="black">=</svg:text></svg:g><svg:g transform="translate(40.238285, 0.000000)"/><svg:g transform="translate(52.238285, -3.984375)"><svg:g transform="translate(1.533619, 0.000000)"><svg:text font-size="19.298776" text-anchor="middle" y="5.466456" x="7.943783" font-family="Times New Roman" fill="black">∏</svg:text></svg:g><svg:g transform="translate(3.761348, 16.695820)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="1.183564" font-family="Times New Roman" font-style="italic" fill="black">i</svg:text><svg:g transform="translate(2.367129, -2.828906)"><svg:text font-size="8.520000" text-anchor="middle" y="2.828906" x="2.402490" font-family="Times New Roman" fill="black">=</svg:text></svg:g><svg:g transform="translate(7.172109, 0.000000)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="2.130000" font-family="Times New Roman" fill="black">0</svg:text></svg:g></svg:g><svg:g transform="translate(0.000000, -12.443047)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="3.070195" font-family="Times New Roman" font-style="italic" fill="black">p</svg:text><svg:g transform="translate(5.200195, 3.128125)"><svg:text font-size="8.000000" text-anchor="middle" y="0.000000" x="1.111328" font-family="Times New Roman" font-style="italic" fill="black">i</svg:text></svg:g><svg:g transform="translate(7.422852, -2.828906)"><svg:text font-size="8.520000" text-anchor="middle" y="2.828906" x="2.402490" font-family="Times New Roman" fill="black"><</svg:text></svg:g><svg:g transform="translate(12.227832, 0.000000)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="3.078516" font-family="Times New Roman" font-style="italic" fill="black">N</svg:text></svg:g></svg:g></svg:g><svg:g transform="translate(71.193090, 0.000000)"><svg:text font-size="12.000000" text-anchor="middle" y="0.000000" x="4.324219" font-family="Times New Roman" font-style="italic" fill="black">p</svg:text><svg:g transform="translate(7.324219, 3.808359)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="1.183564" font-family="Times New Roman" font-style="italic" fill="black">i</svg:text></svg:g><svg:g transform="translate(9.691348, -8.133965)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="1.890791" font-family="Times New Roman" font-style="italic" fill="black">e</svg:text><svg:g transform="translate(3.781582, 3.128125)"><svg:text font-size="8.000000" text-anchor="middle" y="0.000000" x="1.111328" font-family="Times New Roman" font-style="italic" fill="black">i</svg:text></svg:g></svg:g></svg:g></svg:svg>
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
60
doc/sf_and_dist/equations/hypergeometric3.mml
Normal file
@@ -0,0 +1,60 @@
|
||||
<?xml version='1.0'?>
|
||||
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN'
|
||||
'http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd'
|
||||
[<!ENTITY mathml 'http://www.w3.org/1998/Math/MathML'>]>
|
||||
<html xmlns='http://www.w3.org/1999/xhtml'>
|
||||
<head><title>hypergeometric3</title>
|
||||
<!-- MathML created with MathCast Equation Editor version 0.89 -->
|
||||
</head>
|
||||
<body>
|
||||
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
|
||||
<mrow>
|
||||
<mrow>
|
||||
<msub>
|
||||
<mi>e</mi>
|
||||
<mi>i</mi>
|
||||
</msub>
|
||||
</mrow>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<munderover>
|
||||
<mo>∑</mo>
|
||||
<mrow>
|
||||
<mi>j</mi>
|
||||
<mo>=</mo>
|
||||
<mn>1</mn>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<msubsup>
|
||||
<mi>p</mi>
|
||||
<mrow>
|
||||
<mi>i</mi>
|
||||
</mrow>
|
||||
<mi>j</mi>
|
||||
</msubsup>
|
||||
<mo>≤</mo>
|
||||
<mi>N</mi>
|
||||
</mrow>
|
||||
</munderover>
|
||||
<mtext>flοor</mtext>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mfrac>
|
||||
<mi>N</mi>
|
||||
<mrow>
|
||||
<msubsup>
|
||||
<mi>p</mi>
|
||||
<mrow>
|
||||
<mi>i</mi>
|
||||
</mrow>
|
||||
<mi>j</mi>
|
||||
</msubsup>
|
||||
</mrow>
|
||||
</mfrac>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
</math>
|
||||
</body>
|
||||
</html>
|
||||
BIN
doc/sf_and_dist/equations/hypergeometric3.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
2
doc/sf_and_dist/equations/hypergeometric3.svg
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<svg:svg xmlns="http://www.w3.org/1998/Math/MathML" xmlns:svg="http://www.w3.org/2000/svg" height="59.282305pt" width="121.737581pt" xmlns:svgmath="http://www.grigoriev.ru/svgmath" viewBox="0 -36.692539 121.737581 59.282305"><svg:metadata><svgmath:metrics top="59.2823046875" axis="26.574140625" baseline="22.589765625" bottom="0.0"/></svg:metadata><svg:text font-size="12.000000" text-anchor="middle" y="0.000000" x="2.663086" font-family="Times New Roman" font-style="italic" fill="black">e</svg:text><svg:g transform="translate(5.326172, 2.683594)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="1.183564" font-family="Times New Roman" font-style="italic" fill="black">i</svg:text></svg:g><svg:g transform="translate(7.693301, 0.000000)"/><svg:g transform="translate(23.026637, -3.984375)"><svg:text font-size="12.000000" text-anchor="middle" y="3.984375" x="3.383789" font-family="Times New Roman" fill="black">=</svg:text></svg:g><svg:g transform="translate(33.127551, 0.000000)"/><svg:g transform="translate(45.127551, -3.984375)"><svg:text font-size="38.872524" text-anchor="middle" y="9.281574" x="13.855929" font-family="Times New Roman" fill="black">∑</svg:text><svg:g transform="translate(7.405607, 24.735352)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="2.631299" font-family="Times New Roman" font-style="italic" fill="black">j</svg:text><svg:g transform="translate(3.835664, -2.828906)"><svg:text font-size="8.520000" text-anchor="middle" y="2.828906" x="2.402490" font-family="Times New Roman" fill="black">=</svg:text></svg:g><svg:g transform="translate(8.640645, 0.000000)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="2.130000" font-family="Times New Roman" fill="black">1</svg:text></svg:g></svg:g><svg:g transform="translate(3.753556, -22.199570)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="3.070195" font-family="Times New Roman" font-style="italic" fill="black">p</svg:text><svg:g transform="translate(5.200195, 3.128125)"><svg:text font-size="8.000000" text-anchor="middle" y="0.000000" x="1.111328" font-family="Times New Roman" font-style="italic" fill="black">i</svg:text></svg:g><svg:g transform="translate(5.200195, -5.426562)"><svg:text font-size="8.000000" text-anchor="middle" y="0.000000" x="2.470703" font-family="Times New Roman" font-style="italic" fill="black">j</svg:text></svg:g><svg:g transform="translate(8.801758, -2.828906)"><svg:text font-size="8.520000" text-anchor="middle" y="2.828906" x="2.338008" font-family="Times New Roman" fill="black">≤</svg:text></svg:g><svg:g transform="translate(13.477773, 0.000000)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="3.078516" font-family="Times New Roman" font-style="italic" fill="black">N</svg:text></svg:g></svg:g></svg:g><svg:g transform="translate(74.839413, 0.000000)"><svg:text font-size="12.000000" text-anchor="middle" y="0.000000" x="11.663086" font-family="Times New Roman" fill="black">flοor</svg:text></svg:g><svg:g transform="translate(100.241761, -3.984375)"><svg:text font-size="38.872524" transform="scale(0.308701, 1)" text-anchor="middle" y="9.281574" x="6.472427" font-family="Times New Roman" fill="black">(</svg:text><svg:g transform="translate(4.582031, 0.000000)"><svg:g transform="translate(1.428574, -1.781250)"><svg:text font-size="12.000000" text-anchor="middle" y="0.000000" x="4.335938" font-family="Times New Roman" font-style="italic" fill="black">N</svg:text></svg:g><svg:g transform="translate(0.585938, 13.762852)"><svg:text font-size="12.000000" text-anchor="middle" y="0.000000" x="4.324219" font-family="Times New Roman" font-style="italic" fill="black">p</svg:text><svg:g transform="translate(7.324219, 3.808359)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="1.183564" font-family="Times New Roman" font-style="italic" fill="black">i</svg:text></svg:g><svg:g transform="translate(7.324219, -6.750879)"><svg:text font-size="8.520000" text-anchor="middle" y="0.000000" x="2.631299" font-family="Times New Roman" font-style="italic" fill="black">j</svg:text></svg:g></svg:g><svg:line stroke-width="0.585938" x1="0.000000" y1="0.000000" stroke="black" stroke-linecap="butt" stroke-dasharray="none" x2="12.331758" y2="0.000000" fill="none"/></svg:g><svg:g transform="translate(17.499727, 0.000000)"><svg:text font-size="38.872524" transform="scale(0.308701, 1)" text-anchor="middle" y="9.281574" x="6.472427" font-family="Times New Roman" fill="black">)</svg:text></svg:g></svg:g></svg:svg>
|
||||
|
After Width: | Height: | Size: 4.5 KiB |
60
doc/sf_and_dist/equations/hypergeometric4.mml
Normal file
@@ -0,0 +1,60 @@
|
||||
<?xml version='1.0'?>
|
||||
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN'
|
||||
'http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd'
|
||||
[<!ENTITY mathml 'http://www.w3.org/1998/Math/MathML'>]>
|
||||
<html xmlns='http://www.w3.org/1999/xhtml'>
|
||||
<head><title>hypergeometric4</title>
|
||||
<!-- MathML created with MathCast Equation Editor version 0.89 -->
|
||||
</head>
|
||||
<body>
|
||||
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
|
||||
<mrow>
|
||||
<mi>f</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>k</mi>
|
||||
<mo>;</mo>
|
||||
<mi>r</mi>
|
||||
<mo>,</mo>
|
||||
<mi>n</mi>
|
||||
<mo>,</mo>
|
||||
<mi>N</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<munderover>
|
||||
<mo>∏</mo>
|
||||
<mrow>
|
||||
<mi>i</mi>
|
||||
<mo>=</mo>
|
||||
<mn>0</mn>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<msub>
|
||||
<mi>p</mi>
|
||||
<mi>i</mi>
|
||||
</msub>
|
||||
<mo><</mo>
|
||||
<mi>N</mi>
|
||||
</mrow>
|
||||
</munderover>
|
||||
<msup>
|
||||
<mrow>
|
||||
<msub>
|
||||
<mi>p</mi>
|
||||
<mi>i</mi>
|
||||
</msub>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<msub>
|
||||
<mi>e</mi>
|
||||
<mi>i</mi>
|
||||
</msub>
|
||||
</mrow>
|
||||
</msup>
|
||||
</mrow>
|
||||
</math>
|
||||
</body>
|
||||
</html>
|
||||
BIN
doc/sf_and_dist/equations/hypergeometric4.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
2
doc/sf_and_dist/equations/hypergeometric4.svg
Normal file
|
After Width: | Height: | Size: 5.2 KiB |
159
doc/sf_and_dist/equations/hypergeometric5.mml
Normal file
@@ -0,0 +1,159 @@
|
||||
<?xml version='1.0'?>
|
||||
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN'
|
||||
'http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd'
|
||||
[<!ENTITY mathml 'http://www.w3.org/1998/Math/MathML'>]>
|
||||
<html xmlns='http://www.w3.org/1999/xhtml'>
|
||||
<head><title>hypergeometric5</title>
|
||||
<!-- MathML created with MathCast Equation Editor version 0.89 -->
|
||||
</head>
|
||||
<body>
|
||||
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
|
||||
<mrow>
|
||||
<mtable>
|
||||
<mtr>
|
||||
<mtd>
|
||||
<mi>f</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>k</mi>
|
||||
<mo>+</mo>
|
||||
<mn>1</mn>
|
||||
<mo>;</mo>
|
||||
<mi>r</mi>
|
||||
<mo>,</mo>
|
||||
<mi>n</mi>
|
||||
<mo>,</mo>
|
||||
<mi>N</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<mfrac>
|
||||
<mrow>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>n</mi>
|
||||
<mo>−</mo>
|
||||
<mi>k</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>r</mi>
|
||||
<mo>−</mo>
|
||||
<mi>k</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>k</mi>
|
||||
<mo>+</mo>
|
||||
<mn>1</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>n</mi>
|
||||
<mo>−</mo>
|
||||
<mi>r</mi>
|
||||
<mo>+</mo>
|
||||
<mi>k</mi>
|
||||
<mo>+</mo>
|
||||
<mn>1</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
</mfrac>
|
||||
<mi>f</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>k</mi>
|
||||
<mo>;</mo>
|
||||
<mi>r</mi>
|
||||
<mo>,</mo>
|
||||
<mi>n</mi>
|
||||
<mo>,</mo>
|
||||
<mi>N</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mtd>
|
||||
</mtr>
|
||||
<mtr>
|
||||
<mtd>
|
||||
<mi>f</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>k</mi>
|
||||
<mo>−</mo>
|
||||
<mn>1</mn>
|
||||
<mo>;</mo>
|
||||
<mi>r</mi>
|
||||
<mo>,</mo>
|
||||
<mi>n</mi>
|
||||
<mo>,</mo>
|
||||
<mi>N</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<mfrac>
|
||||
<mrow>
|
||||
<mi>x</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>n</mi>
|
||||
<mo>−</mo>
|
||||
<mi>r</mi>
|
||||
<mo>+</mo>
|
||||
<mi>k</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>n</mi>
|
||||
<mo>−</mo>
|
||||
<mi>k</mi>
|
||||
<mo>+</mo>
|
||||
<mn>1</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>r</mi>
|
||||
<mo>−</mo>
|
||||
<mi>k</mi>
|
||||
<mo>+</mo>
|
||||
<mn>1</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
</mfrac>
|
||||
<mi>f</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>k</mi>
|
||||
<mo>;</mo>
|
||||
<mi>r</mi>
|
||||
<mo>,</mo>
|
||||
<mi>n</mi>
|
||||
<mo>,</mo>
|
||||
<mi>N</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mtd>
|
||||
</mtr>
|
||||
</mtable>
|
||||
</mrow>
|
||||
</math>
|
||||
</body>
|
||||
</html>
|
||||
BIN
doc/sf_and_dist/equations/hypergeometric5.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
2
doc/sf_and_dist/equations/hypergeometric5.svg
Normal file
|
After Width: | Height: | Size: 21 KiB |
295
doc/sf_and_dist/equations/hypergeometric6.mml
Normal file
@@ -0,0 +1,295 @@
|
||||
<?xml version='1.0'?>
|
||||
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN'
|
||||
'http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd'
|
||||
[<!ENTITY mathml 'http://www.w3.org/1998/Math/MathML'>]>
|
||||
<html xmlns='http://www.w3.org/1999/xhtml'>
|
||||
<head><title>hypergeometric6</title>
|
||||
<!-- MathML created with MathCast Equation Editor version 0.89 -->
|
||||
</head>
|
||||
<body>
|
||||
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
|
||||
<mrow>
|
||||
<mtable>
|
||||
<mtr>
|
||||
<mtd>
|
||||
<mtext>mean</mtext>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<mfrac>
|
||||
<mrow>
|
||||
<mi>r</mi>
|
||||
<mi>n</mi>
|
||||
</mrow>
|
||||
<mi>N</mi>
|
||||
</mfrac>
|
||||
</mtd>
|
||||
</mtr>
|
||||
<mtr>
|
||||
<mtd>
|
||||
<mtext>mode</mtext>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<mtext>floor</mtext>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mfrac>
|
||||
<mrow>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>r</mi>
|
||||
<mo>+</mo>
|
||||
<mn>1</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>n</mi>
|
||||
<mo>+</mo>
|
||||
<mn>1</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>+</mo>
|
||||
<mn>2</mn>
|
||||
</mrow>
|
||||
</mfrac>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mtd>
|
||||
</mtr>
|
||||
<mtr>
|
||||
<mtd>
|
||||
<mtext>variance</mtext>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<mfrac>
|
||||
<mrow>
|
||||
<mi>r</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mfrac>
|
||||
<mi>n</mi>
|
||||
<mi>N</mi>
|
||||
</mfrac>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mn>1</mn>
|
||||
<mo>−</mo>
|
||||
<mfrac>
|
||||
<mi>n</mi>
|
||||
<mi>N</mi>
|
||||
</mfrac>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>r</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mn>1</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mfrac>
|
||||
</mtd>
|
||||
</mtr>
|
||||
<mtr>
|
||||
<mtd>
|
||||
<mtext>skewness</mtext>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<mfrac>
|
||||
<mrow>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mn>2</mn>
|
||||
<mi>n</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<msqrt>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mn>1</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</msqrt>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mn>2</mn>
|
||||
<mi>r</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<msqrt>
|
||||
<mrow>
|
||||
<mi>r</mi>
|
||||
<mi>n</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>n</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>r</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
</msqrt>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mn>2</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
</mfrac>
|
||||
</mtd>
|
||||
</mtr>
|
||||
<mtr>
|
||||
<mtd>
|
||||
<mtext>kurtosis excess</mtext>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mfrac>
|
||||
<mrow>
|
||||
<msup>
|
||||
<mi>N</mi>
|
||||
<mn>2</mn>
|
||||
</msup>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mn>1</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<mi>r</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mn>2</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mn>3</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>r</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
</mfrac>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mfrac>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>+</mo>
|
||||
<mn>1</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mo>−</mo>
|
||||
<mn>6</mn>
|
||||
<mi>N</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>r</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<mi>n</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>n</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
</mfrac>
|
||||
<mo>+</mo>
|
||||
<mfrac>
|
||||
<mrow>
|
||||
<mn>3</mn>
|
||||
<mi>r</mi>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>−</mo>
|
||||
<mi>r</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>N</mi>
|
||||
<mo>+</mo>
|
||||
<mn>6</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<msup>
|
||||
<mi>N</mi>
|
||||
<mn>2</mn>
|
||||
</msup>
|
||||
</mrow>
|
||||
</mfrac>
|
||||
<mo>−</mo>
|
||||
<mn>6</mn>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
</mtd>
|
||||
</mtr>
|
||||
</mtable>
|
||||
</mrow>
|
||||
</math>
|
||||
</body>
|
||||
</html>
|
||||
BIN
doc/sf_and_dist/equations/hypergeometric6.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
2
doc/sf_and_dist/equations/hypergeometric6.svg
Normal file
|
After Width: | Height: | Size: 35 KiB |
52
doc/sf_and_dist/equations/laplace_pdf.mml
Normal file
@@ -0,0 +1,52 @@
|
||||
<?xml version='1.0'?>
|
||||
<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN'
|
||||
'http://www.w3.org/TR/MathML2/dtd/xhtml-math11-f.dtd'
|
||||
[<!ENTITY mathml 'http://www.w3.org/1998/Math/MathML'>]>
|
||||
<html xmlns='http://www.w3.org/1999/xhtml'>
|
||||
<head><title>laplace_pdf</title>
|
||||
</head>
|
||||
<body>
|
||||
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
|
||||
<mrow>
|
||||
<mtext>f</mtext>
|
||||
<mfenced>
|
||||
<mrow>
|
||||
<mi>x</mi>
|
||||
<mo>;</mo>
|
||||
<mi>μ</mi>
|
||||
<mo>,</mo>
|
||||
<mi>σ</mi>
|
||||
</mrow>
|
||||
</mfenced>
|
||||
<mspace width="1em"/>
|
||||
<mo>=</mo>
|
||||
<mspace width="1em"/>
|
||||
<mfrac>
|
||||
<mn>1</mn>
|
||||
<mrow>
|
||||
<mn>2</mn>
|
||||
<mi>σ</mi>
|
||||
</mrow>
|
||||
</mfrac>
|
||||
<msup>
|
||||
<mi>e</mi>
|
||||
<mrow>
|
||||
<mo>−</mo>
|
||||
<mfrac>
|
||||
<mrow>
|
||||
<mo>|</mo>
|
||||
<mi>x</mi>
|
||||
<mo>−</mo>
|
||||
<mi>μ</mi>
|
||||
<mo>|</mo>
|
||||
</mrow>
|
||||
<mrow>
|
||||
<mi>σ</mi>
|
||||
</mrow>
|
||||
</mfrac>
|
||||
</mrow>
|
||||
</msup>
|
||||
</mrow>
|
||||
</math>
|
||||
</body>
|
||||
</html>
|
||||
BIN
doc/sf_and_dist/equations/laplace_pdf.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
2
doc/sf_and_dist/equations/laplace_pdf.svg
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
@@ -1,5 +1,16 @@
|
||||
// (C) Copyright John Maddock 2008.
|
||||
// Copyright Paul A. Bristow 2008
|
||||
/*! \file dist_graphs.cpp
|
||||
\brief Produces Scalable Vector Graphic (.svg) files for all distributions.
|
||||
\details These files can be viewed using most browsers,
|
||||
though MS Internet Explorer requires a plugin from Adobe.
|
||||
These file can be converted to .png using Inkscape
|
||||
(see www.inkscape.org) Export Bit option which by default produces
|
||||
a Portable Network Graphic file with that same filename but .png suffix instead of .svg.
|
||||
Using Python, generate.sh does this conversion automatically for all .svg files in a folder.
|
||||
|
||||
\author John Maddock and Paul A. Bristow
|
||||
*/
|
||||
// Copyright John Maddock 2008.
|
||||
// Copyright Paul A. Bristow 2008, 2009
|
||||
// Use, modification and distribution are subject to the
|
||||
// Boost Software License, Version 1.0. (See accompanying file
|
||||
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
@@ -23,27 +34,30 @@
|
||||
#include <string>
|
||||
|
||||
template <class Dist>
|
||||
struct is_discrete_distribution
|
||||
struct is_discrete_distribution
|
||||
: public boost::mpl::false_{};
|
||||
|
||||
template<class T, class P>
|
||||
struct is_discrete_distribution<boost::math::bernoulli_distribution<T,P> >
|
||||
struct is_discrete_distribution<boost::math::bernoulli_distribution<T,P> >
|
||||
: public boost::mpl::true_{};
|
||||
template<class T, class P>
|
||||
struct is_discrete_distribution<boost::math::binomial_distribution<T,P> >
|
||||
struct is_discrete_distribution<boost::math::binomial_distribution<T,P> >
|
||||
: public boost::mpl::true_{};
|
||||
template<class T, class P>
|
||||
struct is_discrete_distribution<boost::math::negative_binomial_distribution<T,P> >
|
||||
struct is_discrete_distribution<boost::math::negative_binomial_distribution<T,P> >
|
||||
: public boost::mpl::true_{};
|
||||
template<class T, class P>
|
||||
struct is_discrete_distribution<boost::math::poisson_distribution<T,P> >
|
||||
struct is_discrete_distribution<boost::math::poisson_distribution<T,P> >
|
||||
: public boost::mpl::true_{};
|
||||
template<class T, class P>
|
||||
struct is_discrete_distribution<boost::math::hypergeometric_distribution<T,P> >
|
||||
: public boost::mpl::true_{};
|
||||
|
||||
|
||||
template <class Dist>
|
||||
struct value_finder
|
||||
{
|
||||
value_finder(Dist const& d, typename Dist::value_type v)
|
||||
value_finder(Dist const& d, typename Dist::value_type v)
|
||||
: m_dist(d), m_value(v) {}
|
||||
|
||||
inline typename Dist::value_type operator()(const typename Dist::value_type& x)
|
||||
@@ -79,9 +93,9 @@ public:
|
||||
//
|
||||
double mod;
|
||||
try
|
||||
{
|
||||
mod = mode(d);
|
||||
}
|
||||
{
|
||||
mod = mode(d);
|
||||
}
|
||||
catch(const std::domain_error& )
|
||||
{
|
||||
mod = a;
|
||||
@@ -96,7 +110,7 @@ public:
|
||||
double peek_y = pdf(d, mod);
|
||||
double min_y = peek_y / 20;
|
||||
//
|
||||
// If the extent is "infinite" then find out how large it
|
||||
// If the extent is "infinite" then find out how large it
|
||||
// has to be for the PDF to decay to min_y:
|
||||
//
|
||||
if(a <= -(std::numeric_limits<double>::max)())
|
||||
@@ -130,7 +144,7 @@ public:
|
||||
}
|
||||
//
|
||||
// Recalculate peek_y and location of mod so that
|
||||
// it's not too close to one end of the graph:
|
||||
// it's not too close to one end of the graph:
|
||||
// otherwise we may be shooting off to infinity.
|
||||
//
|
||||
if(!is_discrete_distribution<Dist>::value)
|
||||
@@ -157,7 +171,7 @@ public:
|
||||
}
|
||||
else
|
||||
{
|
||||
if(a < m_min_x)
|
||||
if(a < m_min_x)
|
||||
m_min_x = a;
|
||||
if(b > m_max_x)
|
||||
m_max_x = b;
|
||||
@@ -168,7 +182,7 @@ public:
|
||||
{
|
||||
using namespace boost::svg;
|
||||
|
||||
static const svg_color colors[5] =
|
||||
static const svg_color colors[5] =
|
||||
{
|
||||
darkblue,
|
||||
darkred,
|
||||
@@ -291,7 +305,7 @@ public:
|
||||
.line_color(colors[color_index])
|
||||
.line_width(1.)
|
||||
.shape(none)
|
||||
.area_fill(colors[color_index]);
|
||||
.area_fill(colors[color_index]);
|
||||
++color_index;
|
||||
color_index = color_index % (sizeof(colors)/sizeof(colors[0]));
|
||||
}
|
||||
@@ -307,21 +321,21 @@ private:
|
||||
|
||||
int main()
|
||||
{
|
||||
distribution_plotter<boost::math::gamma_distribution<> >
|
||||
distribution_plotter<boost::math::gamma_distribution<> >
|
||||
gamma_plotter;
|
||||
gamma_plotter.add(boost::math::gamma_distribution<>(1), "shape = 0.5");
|
||||
gamma_plotter.add(boost::math::gamma_distribution<>(2), "shape = 1");
|
||||
gamma_plotter.add(boost::math::gamma_distribution<>(4), "shape = 3");
|
||||
gamma_plotter.plot("Gamma Distribution PDF With Scale = 1", "gamma1_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::gamma_distribution<> >
|
||||
distribution_plotter<boost::math::gamma_distribution<> >
|
||||
gamma_plotter2;
|
||||
gamma_plotter2.add(boost::math::gamma_distribution<>(2, 0.5), "scale = 2");
|
||||
gamma_plotter2.add(boost::math::gamma_distribution<>(2, 1), "scale = 0.5");
|
||||
gamma_plotter2.add(boost::math::gamma_distribution<>(2, 2), "scale = 2");
|
||||
gamma_plotter2.plot("Gamma Distribution PDF With Shape = 2", "gamma2_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::normal>
|
||||
distribution_plotter<boost::math::normal>
|
||||
normal_plotter;
|
||||
normal_plotter.add(boost::math::normal(0, 1), "μ = 0, σ = 1");
|
||||
normal_plotter.add(boost::math::normal(0, 0.5), "μ = 0, σ = 0.5");
|
||||
@@ -330,7 +344,16 @@ int main()
|
||||
normal_plotter.add(boost::math::normal(1, 1), "μ = 1, σ = 1");
|
||||
normal_plotter.plot("Normal Distribution PDF", "normal_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::non_central_chi_squared>
|
||||
distribution_plotter<boost::math::laplace>
|
||||
laplace_plotter;
|
||||
laplace_plotter.add(boost::math::laplace(0, 1), "μ = 0, σ = 1");
|
||||
laplace_plotter.add(boost::math::laplace(0, 0.5), "μ = 0, σ = 0.5");
|
||||
laplace_plotter.add(boost::math::laplace(0, 2), "μ = 0, σ = 2");
|
||||
laplace_plotter.add(boost::math::laplace(-1, 1), "μ = -1, σ = 1");
|
||||
laplace_plotter.add(boost::math::laplace(1, 1), "μ = 1, σ = 1");
|
||||
laplace_plotter.plot("Laplace Distribution PDF", "laplace_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::non_central_chi_squared>
|
||||
nc_cs_plotter;
|
||||
nc_cs_plotter.add(boost::math::non_central_chi_squared(20, 0), "v=20, λ=0");
|
||||
nc_cs_plotter.add(boost::math::non_central_chi_squared(20, 1), "v=20, λ=1");
|
||||
@@ -340,7 +363,7 @@ int main()
|
||||
nc_cs_plotter.add(boost::math::non_central_chi_squared(20, 100), "v=20, λ=100");
|
||||
nc_cs_plotter.plot("Non Central Chi Squared PDF", "nccs_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::non_central_beta>
|
||||
distribution_plotter<boost::math::non_central_beta>
|
||||
nc_beta_plotter;
|
||||
nc_beta_plotter.add(boost::math::non_central_beta(10, 15, 0), "α=10, β=15, δ=0");
|
||||
nc_beta_plotter.add(boost::math::non_central_beta(10, 15, 1), "α=10, β=15, δ=1");
|
||||
@@ -350,7 +373,7 @@ int main()
|
||||
nc_beta_plotter.add(boost::math::non_central_beta(10, 15, 100), "α=10, β=15, δ=100");
|
||||
nc_beta_plotter.plot("Non Central Beta PDF", "nc_beta_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::non_central_f>
|
||||
distribution_plotter<boost::math::non_central_f>
|
||||
nc_f_plotter;
|
||||
nc_f_plotter.add(boost::math::non_central_f(10, 20, 0), "v1=10, v2=20, λ=0");
|
||||
nc_f_plotter.add(boost::math::non_central_f(10, 20, 1), "v1=10, v2=20, λ=1");
|
||||
@@ -360,7 +383,7 @@ int main()
|
||||
nc_f_plotter.add(boost::math::non_central_f(10, 20, 100), "v1=10, v2=20, λ=100");
|
||||
nc_f_plotter.plot("Non Central F PDF", "nc_f_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::non_central_t>
|
||||
distribution_plotter<boost::math::non_central_t>
|
||||
nc_t_plotter;
|
||||
nc_t_plotter.add(boost::math::non_central_t(10, -10), "v=10, δ=-10");
|
||||
nc_t_plotter.add(boost::math::non_central_t(10, -5), "v=10, δ=-5");
|
||||
@@ -369,7 +392,7 @@ int main()
|
||||
nc_t_plotter.add(boost::math::non_central_t(10, 10), "v=10, δ=10");
|
||||
nc_t_plotter.plot("Non Central T PDF", "nc_t_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::beta_distribution<> >
|
||||
distribution_plotter<boost::math::beta_distribution<> >
|
||||
beta_plotter;
|
||||
beta_plotter.add(boost::math::beta_distribution<>(0.5, 0.5), "alpha=0.5, beta=0.5");
|
||||
beta_plotter.add(boost::math::beta_distribution<>(5, 1), "alpha=5, beta=1");
|
||||
@@ -378,21 +401,21 @@ int main()
|
||||
beta_plotter.add(boost::math::beta_distribution<>(2, 5), "alpha=2, beta=5");
|
||||
beta_plotter.plot("Beta Distribution PDF", "beta_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::cauchy_distribution<> >
|
||||
distribution_plotter<boost::math::cauchy_distribution<> >
|
||||
cauchy_plotter;
|
||||
cauchy_plotter.add(boost::math::cauchy_distribution<>(-5, 1), "location = -5");
|
||||
cauchy_plotter.add(boost::math::cauchy_distribution<>(0, 1), "location = 0");
|
||||
cauchy_plotter.add(boost::math::cauchy_distribution<>(5, 1), "location = 5");
|
||||
cauchy_plotter.plot("Cauchy Distribution PDF (scale = 1)", "cauchy_pdf1.svg");
|
||||
|
||||
distribution_plotter<boost::math::cauchy_distribution<> >
|
||||
distribution_plotter<boost::math::cauchy_distribution<> >
|
||||
cauchy_plotter2;
|
||||
cauchy_plotter2.add(boost::math::cauchy_distribution<>(0, 0.5), "scale = 0.5");
|
||||
cauchy_plotter2.add(boost::math::cauchy_distribution<>(0, 1), "scale = 1");
|
||||
cauchy_plotter2.add(boost::math::cauchy_distribution<>(0, 2), "scale = 2");
|
||||
cauchy_plotter2.plot("Cauchy Distribution PDF (location = 0)", "cauchy_pdf2.svg");
|
||||
|
||||
distribution_plotter<boost::math::chi_squared_distribution<> >
|
||||
distribution_plotter<boost::math::chi_squared_distribution<> >
|
||||
chi_squared_plotter;
|
||||
//chi_squared_plotter.add(boost::math::chi_squared_distribution<>(1), "v=1");
|
||||
chi_squared_plotter.add(boost::math::chi_squared_distribution<>(2), "v=2");
|
||||
@@ -400,28 +423,28 @@ int main()
|
||||
chi_squared_plotter.add(boost::math::chi_squared_distribution<>(10), "v=10");
|
||||
chi_squared_plotter.plot("Chi Squared Distribution PDF", "chi_squared_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::exponential_distribution<> >
|
||||
distribution_plotter<boost::math::exponential_distribution<> >
|
||||
exponential_plotter;
|
||||
exponential_plotter.add(boost::math::exponential_distribution<>(0.5), "λ=1");
|
||||
exponential_plotter.add(boost::math::exponential_distribution<>(1), "λ=2");
|
||||
exponential_plotter.add(boost::math::exponential_distribution<>(2), "λ=5");
|
||||
exponential_plotter.plot("Exponential Distribution PDF", "exponential_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::extreme_value_distribution<> >
|
||||
distribution_plotter<boost::math::extreme_value_distribution<> >
|
||||
extreme_value_plotter;
|
||||
extreme_value_plotter.add(boost::math::extreme_value_distribution<>(-5), "location=1");
|
||||
extreme_value_plotter.add(boost::math::extreme_value_distribution<>(0), "location=2");
|
||||
extreme_value_plotter.add(boost::math::extreme_value_distribution<>(5), "location=5");
|
||||
extreme_value_plotter.plot("Extreme Value Distribution PDF (shape=1)", "extreme_value_pdf1.svg");
|
||||
|
||||
distribution_plotter<boost::math::extreme_value_distribution<> >
|
||||
distribution_plotter<boost::math::extreme_value_distribution<> >
|
||||
extreme_value_plotter2;
|
||||
extreme_value_plotter2.add(boost::math::extreme_value_distribution<>(0, 0.5), "shape=0.5");
|
||||
extreme_value_plotter2.add(boost::math::extreme_value_distribution<>(0, 1), "shape=1");
|
||||
extreme_value_plotter2.add(boost::math::extreme_value_distribution<>(0, 2), "shape=2");
|
||||
extreme_value_plotter2.plot("Extreme Value Distribution PDF (location=0)", "extreme_value_pdf2.svg");
|
||||
|
||||
distribution_plotter<boost::math::fisher_f_distribution<> >
|
||||
distribution_plotter<boost::math::fisher_f_distribution<> >
|
||||
fisher_f_plotter;
|
||||
fisher_f_plotter.add(boost::math::fisher_f_distribution<>(4, 4), "n=4, m=4");
|
||||
fisher_f_plotter.add(boost::math::fisher_f_distribution<>(10, 4), "n=10, m=4");
|
||||
@@ -429,35 +452,35 @@ int main()
|
||||
fisher_f_plotter.add(boost::math::fisher_f_distribution<>(4, 10), "n=4, m=10");
|
||||
fisher_f_plotter.plot("F Distribution PDF", "fisher_f_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::lognormal_distribution<> >
|
||||
distribution_plotter<boost::math::lognormal_distribution<> >
|
||||
lognormal_plotter;
|
||||
lognormal_plotter.add(boost::math::lognormal_distribution<>(-1), "location=-1");
|
||||
lognormal_plotter.add(boost::math::lognormal_distribution<>(0), "location=0");
|
||||
lognormal_plotter.add(boost::math::lognormal_distribution<>(1), "location=1");
|
||||
lognormal_plotter.plot("Lognormal Distribution PDF (scale=1)", "lognormal_pdf1.svg");
|
||||
|
||||
distribution_plotter<boost::math::lognormal_distribution<> >
|
||||
distribution_plotter<boost::math::lognormal_distribution<> >
|
||||
lognormal_plotter2;
|
||||
lognormal_plotter2.add(boost::math::lognormal_distribution<>(0, 0.5), "scale=0.5");
|
||||
lognormal_plotter2.add(boost::math::lognormal_distribution<>(0, 1), "scale=1");
|
||||
lognormal_plotter2.add(boost::math::lognormal_distribution<>(0, 2), "scale=2");
|
||||
lognormal_plotter2.plot("Lognormal Distribution PDF (location=0)", "lognormal_pdf2.svg");
|
||||
|
||||
distribution_plotter<boost::math::pareto_distribution<> >
|
||||
pareto_plotter;
|
||||
pareto_plotter.add(boost::math::pareto_distribution<>(1), "location=1");
|
||||
pareto_plotter.add(boost::math::pareto_distribution<>(2), "location=2");
|
||||
pareto_plotter.add(boost::math::pareto_distribution<>(3), "location=3");
|
||||
pareto_plotter.plot("Pareto Distribution PDF (scale=1)", "pareto_pdf1.svg");
|
||||
distribution_plotter<boost::math::pareto_distribution<> >
|
||||
pareto_plotter; // Rely on 2nd parameter shape = 1 default.
|
||||
pareto_plotter.add(boost::math::pareto_distribution<>(1), "scale=1");
|
||||
pareto_plotter.add(boost::math::pareto_distribution<>(2), "scale=2");
|
||||
pareto_plotter.add(boost::math::pareto_distribution<>(3), "scale=3");
|
||||
pareto_plotter.plot("Pareto Distribution PDF (shape=1)", "pareto_pdf1.svg");
|
||||
|
||||
distribution_plotter<boost::math::pareto_distribution<> >
|
||||
distribution_plotter<boost::math::pareto_distribution<> >
|
||||
pareto_plotter2;
|
||||
pareto_plotter2.add(boost::math::pareto_distribution<>(1, 0.5), "scale=0.5");
|
||||
pareto_plotter2.add(boost::math::pareto_distribution<>(1, 1), "scale=1");
|
||||
pareto_plotter2.add(boost::math::pareto_distribution<>(1, 2), "scale=2");
|
||||
pareto_plotter2.plot("Pareto Distribution PDF (location=1)", "pareto_pdf2.svg");
|
||||
pareto_plotter2.add(boost::math::pareto_distribution<>(1, 0.5), "shape=0.5");
|
||||
pareto_plotter2.add(boost::math::pareto_distribution<>(1, 1), "shape=1");
|
||||
pareto_plotter2.add(boost::math::pareto_distribution<>(1, 2), "shape=2");
|
||||
pareto_plotter2.plot("Pareto Distribution PDF (scale=1)", "pareto_pdf2.svg");
|
||||
|
||||
distribution_plotter<boost::math::rayleigh_distribution<> >
|
||||
distribution_plotter<boost::math::rayleigh_distribution<> >
|
||||
rayleigh_plotter;
|
||||
rayleigh_plotter.add(boost::math::rayleigh_distribution<>(0.5), "σ=0.5");
|
||||
rayleigh_plotter.add(boost::math::rayleigh_distribution<>(1), "σ=1");
|
||||
@@ -466,7 +489,7 @@ int main()
|
||||
rayleigh_plotter.add(boost::math::rayleigh_distribution<>(10), "σ=10");
|
||||
rayleigh_plotter.plot("Rayleigh Distribution PDF", "rayleigh_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::rayleigh_distribution<> >
|
||||
distribution_plotter<boost::math::rayleigh_distribution<> >
|
||||
rayleigh_cdf_plotter(false);
|
||||
rayleigh_cdf_plotter.add(boost::math::rayleigh_distribution<>(0.5), "σ=0.5");
|
||||
rayleigh_cdf_plotter.add(boost::math::rayleigh_distribution<>(1), "σ=1");
|
||||
@@ -475,7 +498,7 @@ int main()
|
||||
rayleigh_cdf_plotter.add(boost::math::rayleigh_distribution<>(10), "σ=10");
|
||||
rayleigh_cdf_plotter.plot("Rayleigh Distribution CDF", "rayleigh_cdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::triangular_distribution<> >
|
||||
distribution_plotter<boost::math::triangular_distribution<> >
|
||||
triangular_plotter;
|
||||
triangular_plotter.add(boost::math::triangular_distribution<>(-1,0,1), "{-1,0,1}");
|
||||
triangular_plotter.add(boost::math::triangular_distribution<>(0,1,1), "{0,1,1}");
|
||||
@@ -484,7 +507,7 @@ int main()
|
||||
triangular_plotter.add(boost::math::triangular_distribution<>(-2,0,3), "{-2,0,3}");
|
||||
triangular_plotter.plot("Triangular Distribution PDF", "triangular_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::triangular_distribution<> >
|
||||
distribution_plotter<boost::math::triangular_distribution<> >
|
||||
triangular_cdf_plotter(false);
|
||||
triangular_cdf_plotter.add(boost::math::triangular_distribution<>(-1,0,1), "{-1,0,1}");
|
||||
triangular_cdf_plotter.add(boost::math::triangular_distribution<>(0,1,1), "{0,1,1}");
|
||||
@@ -493,14 +516,14 @@ int main()
|
||||
triangular_cdf_plotter.add(boost::math::triangular_distribution<>(-2,0,3), "{-2,0,3}");
|
||||
triangular_cdf_plotter.plot("Triangular Distribution CDF", "triangular_cdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::students_t_distribution<> >
|
||||
distribution_plotter<boost::math::students_t_distribution<> >
|
||||
students_t_plotter;
|
||||
students_t_plotter.add(boost::math::students_t_distribution<>(1), "v=1");
|
||||
students_t_plotter.add(boost::math::students_t_distribution<>(5), "v=5");
|
||||
students_t_plotter.add(boost::math::students_t_distribution<>(30), "v=30");
|
||||
students_t_plotter.plot("Students T Distribution PDF", "students_t_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::weibull_distribution<> >
|
||||
distribution_plotter<boost::math::weibull_distribution<> >
|
||||
weibull_plotter;
|
||||
weibull_plotter.add(boost::math::weibull_distribution<>(0.75), "shape=0.75");
|
||||
weibull_plotter.add(boost::math::weibull_distribution<>(1), "shape=1");
|
||||
@@ -508,14 +531,14 @@ int main()
|
||||
weibull_plotter.add(boost::math::weibull_distribution<>(10), "shape=10");
|
||||
weibull_plotter.plot("Weibull Distribution PDF (scale=1)", "weibull_pdf1.svg");
|
||||
|
||||
distribution_plotter<boost::math::weibull_distribution<> >
|
||||
distribution_plotter<boost::math::weibull_distribution<> >
|
||||
weibull_plotter2;
|
||||
weibull_plotter2.add(boost::math::weibull_distribution<>(3, 0.5), "scale=0.5");
|
||||
weibull_plotter2.add(boost::math::weibull_distribution<>(3, 1), "scale=1");
|
||||
weibull_plotter2.add(boost::math::weibull_distribution<>(3, 2), "scale=2");
|
||||
weibull_plotter2.plot("Weibull Distribution PDF (shape=3)", "weibull_pdf2.svg");
|
||||
|
||||
distribution_plotter<boost::math::uniform_distribution<> >
|
||||
distribution_plotter<boost::math::uniform_distribution<> >
|
||||
uniform_plotter;
|
||||
uniform_plotter.add(boost::math::uniform_distribution<>(0, 1), "{0,1}");
|
||||
uniform_plotter.add(boost::math::uniform_distribution<>(0, 3), "{0,3}");
|
||||
@@ -523,7 +546,7 @@ int main()
|
||||
uniform_plotter.add(boost::math::uniform_distribution<>(-1, 1), "{-1,1}");
|
||||
uniform_plotter.plot("Uniform Distribution PDF", "uniform_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::uniform_distribution<> >
|
||||
distribution_plotter<boost::math::uniform_distribution<> >
|
||||
uniform_cdf_plotter(false);
|
||||
uniform_cdf_plotter.add(boost::math::uniform_distribution<>(0, 1), "{0,1}");
|
||||
uniform_cdf_plotter.add(boost::math::uniform_distribution<>(0, 3), "{0,3}");
|
||||
@@ -531,53 +554,71 @@ int main()
|
||||
uniform_cdf_plotter.add(boost::math::uniform_distribution<>(-1, 1), "{-1,1}");
|
||||
uniform_cdf_plotter.plot("Uniform Distribution CDF", "uniform_cdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::bernoulli_distribution<> >
|
||||
distribution_plotter<boost::math::bernoulli_distribution<> >
|
||||
bernoulli_plotter;
|
||||
bernoulli_plotter.add(boost::math::bernoulli_distribution<>(0.25), "p=0.25");
|
||||
bernoulli_plotter.add(boost::math::bernoulli_distribution<>(0.5), "p=0.5");
|
||||
bernoulli_plotter.add(boost::math::bernoulli_distribution<>(0.75), "p=0.75");
|
||||
bernoulli_plotter.plot("Bernoulli Distribution PDF", "bernoulli_pdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::bernoulli_distribution<> >
|
||||
distribution_plotter<boost::math::bernoulli_distribution<> >
|
||||
bernoulli_cdf_plotter(false);
|
||||
bernoulli_cdf_plotter.add(boost::math::bernoulli_distribution<>(0.25), "p=0.25");
|
||||
bernoulli_cdf_plotter.add(boost::math::bernoulli_distribution<>(0.5), "p=0.5");
|
||||
bernoulli_cdf_plotter.add(boost::math::bernoulli_distribution<>(0.75), "p=0.75");
|
||||
bernoulli_cdf_plotter.plot("Bernoulli Distribution CDF", "bernoulli_cdf.svg");
|
||||
|
||||
distribution_plotter<boost::math::binomial_distribution<> >
|
||||
distribution_plotter<boost::math::binomial_distribution<> >
|
||||
binomial_plotter;
|
||||
binomial_plotter.add(boost::math::binomial_distribution<>(5, 0.5), "n=5 p=0.5");
|
||||
binomial_plotter.add(boost::math::binomial_distribution<>(20, 0.5), "n=20 p=0.5");
|
||||
binomial_plotter.add(boost::math::binomial_distribution<>(50, 0.5), "n=50 p=0.5");
|
||||
binomial_plotter.plot("Binomial Distribution PDF", "binomial_pdf_1.svg");
|
||||
|
||||
distribution_plotter<boost::math::binomial_distribution<> >
|
||||
distribution_plotter<boost::math::binomial_distribution<> >
|
||||
binomial_plotter2;
|
||||
binomial_plotter2.add(boost::math::binomial_distribution<>(20, 0.1), "n=20 p=0.1");
|
||||
binomial_plotter2.add(boost::math::binomial_distribution<>(20, 0.5), "n=20 p=0.5");
|
||||
binomial_plotter2.add(boost::math::binomial_distribution<>(20, 0.9), "n=20 p=0.9");
|
||||
binomial_plotter2.plot("Binomial Distribution PDF", "binomial_pdf_2.svg");
|
||||
|
||||
distribution_plotter<boost::math::negative_binomial_distribution<> >
|
||||
|
||||
distribution_plotter<boost::math::negative_binomial_distribution<> >
|
||||
negative_binomial_plotter;
|
||||
negative_binomial_plotter.add(boost::math::negative_binomial_distribution<>(20, 0.25), "n=20 p=0.25");
|
||||
negative_binomial_plotter.add(boost::math::negative_binomial_distribution<>(20, 0.5), "n=20 p=0.5");
|
||||
negative_binomial_plotter.add(boost::math::negative_binomial_distribution<>(20, 0.75), "n=20 p=0.75");
|
||||
negative_binomial_plotter.plot("Negative Binomial Distribution PDF", "negative_binomial_pdf_1.svg");
|
||||
|
||||
distribution_plotter<boost::math::negative_binomial_distribution<> >
|
||||
distribution_plotter<boost::math::negative_binomial_distribution<> >
|
||||
negative_binomial_plotter2;
|
||||
negative_binomial_plotter2.add(boost::math::negative_binomial_distribution<>(10, 0.5), "n=10 p=0.5");
|
||||
negative_binomial_plotter2.add(boost::math::negative_binomial_distribution<>(20, 0.5), "n=40 p=0.5");
|
||||
negative_binomial_plotter2.add(boost::math::negative_binomial_distribution<>(70, 0.5), "n=70 p=0.5");
|
||||
negative_binomial_plotter2.plot("Negative Binomial Distribution PDF", "negative_binomial_pdf_2.svg");
|
||||
|
||||
distribution_plotter<boost::math::poisson_distribution<> >
|
||||
distribution_plotter<boost::math::poisson_distribution<> >
|
||||
poisson_plotter;
|
||||
poisson_plotter.add(boost::math::poisson_distribution<>(5), "λ=1");
|
||||
poisson_plotter.add(boost::math::poisson_distribution<>(10), "λ=10");
|
||||
poisson_plotter.add(boost::math::poisson_distribution<>(20), "λ=50");
|
||||
poisson_plotter.plot("Poisson Distribution PDF", "poisson_pdf_1.svg");
|
||||
|
||||
distribution_plotter<boost::math::hypergeometric_distribution<> >
|
||||
hypergeometric_plotter;
|
||||
hypergeometric_plotter.add(boost::math::hypergeometric_distribution<>(30, 50, 500), "N=500, r=50, n=30");
|
||||
hypergeometric_plotter.add(boost::math::hypergeometric_distribution<>(30, 100, 500), "N=500, r=100, n=30");
|
||||
hypergeometric_plotter.add(boost::math::hypergeometric_distribution<>(30, 250, 500), "N=500, r=250, n=30");
|
||||
hypergeometric_plotter.add(boost::math::hypergeometric_distribution<>(30, 400, 500), "N=500, r=400, n=30");
|
||||
hypergeometric_plotter.add(boost::math::hypergeometric_distribution<>(30, 450, 500), "N=500, r=450, n=30");
|
||||
hypergeometric_plotter.plot("Hypergeometric Distribution PDF", "hypergeometric_pdf_1.svg");
|
||||
|
||||
distribution_plotter<boost::math::hypergeometric_distribution<> >
|
||||
hypergeometric_plotter2;
|
||||
hypergeometric_plotter2.add(boost::math::hypergeometric_distribution<>(50, 50, 500), "N=500, r=50, n=50");
|
||||
hypergeometric_plotter2.add(boost::math::hypergeometric_distribution<>(100, 50, 500), "N=500, r=50, n=100");
|
||||
hypergeometric_plotter2.add(boost::math::hypergeometric_distribution<>(250, 50, 500), "N=500, r=50, n=250");
|
||||
hypergeometric_plotter2.add(boost::math::hypergeometric_distribution<>(400, 50, 500), "N=500, r=50, n=400");
|
||||
hypergeometric_plotter2.add(boost::math::hypergeometric_distribution<>(450, 50, 500), "N=500, r=50, n=450");
|
||||
hypergeometric_plotter2.plot("Hypergeometric Distribution PDF", "hypergeometric_pdf_2.svg");
|
||||
|
||||
}
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
#
|
||||
# Paths to tools come first, change these to match your system:
|
||||
#
|
||||
math2svg='C:\download\open\SVGMath-0.3.1\math2svg.py'
|
||||
python=/cygdrive/c/Python25/python.exe
|
||||
math2svg='d:\download\open\SVGMath-0.3.1\math2svg.py'
|
||||
python=/cygdrive/c/Python26/python.exe
|
||||
inkscape=/cygdrive/c/progra~1/Inkscape/inkscape
|
||||
# Image DPI:
|
||||
dpi=96
|
||||
@@ -24,3 +24,4 @@ done
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
BIN
doc/sf_and_dist/graphs/hypergeometric_pdf_1.png
Normal file
|
After Width: | Height: | Size: 41 KiB |
72
doc/sf_and_dist/graphs/hypergeometric_pdf_1.svg
Normal file
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="750" height ="400" version="1.1"
|
||||
xmlns:svg ="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns ="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) -->
|
||||
<!-- Use, modification and distribution of Boost.Plot subject to the -->
|
||||
<!-- Boost Software License, Version 1.0.-->
|
||||
<!-- (See accompanying file LICENSE_1_0.txt -->
|
||||
<!-- or copy at http://www.boost.org/LICENSE_1_0.txt) -->
|
||||
|
||||
<clipPath id="plot_window"><rect x="79.6" y="63" width="438.3" height="271.4"/></clipPath>
|
||||
<g id="imageBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="0" y="0" width="750" height="400"/></g>
|
||||
<g id="plotBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="78.6" y="62" width="440.3" height="273.4"/></g>
|
||||
<g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="yMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="xMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="xMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="yAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="85.7" y1="62" x2="85.7" y2="340.4"/><line x1="78.6" y1="62" x2="78.6" y2="335.4"/></g>
|
||||
<g id="xAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="73.6" y1="335.4" x2="518.9" y2="335.4"/><line x1="73.6" y1="335.4" x2="518.9" y2="335.4"/></g>
|
||||
<g id="yMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M76.6,325.2 L78.6,325.2 M76.6,315 L78.6,315 M76.6,304.8 L78.6,304.8 M76.6,294.6 L78.6,294.6 M76.6,274.2 L78.6,274.2 M76.6,263.9 L78.6,263.9 M76.6,253.7 L78.6,253.7 M76.6,243.5 L78.6,243.5 M76.6,223.1 L78.6,223.1 M76.6,212.9 L78.6,212.9 M76.6,202.7 L78.6,202.7 M76.6,192.5 L78.6,192.5 M76.6,172.1 L78.6,172.1 M76.6,161.9 L78.6,161.9 M76.6,151.7 L78.6,151.7 M76.6,141.4 L78.6,141.4 M76.6,121 L78.6,121 M76.6,110.8 L78.6,110.8 M76.6,100.6 L78.6,100.6 M76.6,90.41 L78.6,90.41 M76.6,69.99 L78.6,69.99 M76.6,335.4 L78.6,335.4 " fill="none"/></g>
|
||||
<g id="xMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"></g>
|
||||
<g id="yMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M73.6,335.4 L78.6,335.4 M73.6,284.4 L78.6,284.4 M73.6,233.3 L78.6,233.3 M73.6,182.3 L78.6,182.3 M73.6,131.2 L78.6,131.2 M73.6,80.2 L78.6,80.2 M73.6,335.4 L78.6,335.4 " fill="none"/></g>
|
||||
<g id="xMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M85.7,335.4 L85.7,340.4 M156.7,335.4 L156.7,340.4 M227.7,335.4 L227.7,340.4 M298.7,335.4 L298.7,340.4 M369.8,335.4 L369.8,340.4 M440.8,335.4 L440.8,340.4 M511.8,335.4 L511.8,340.4 M85.7,335.4 L85.7,340.4 " fill="none"/></g>
|
||||
<g id="plotLabels">
|
||||
<text x="85.7" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">0</text>
|
||||
<text x="156.7" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">5</text>
|
||||
<text x="227.7" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">10</text>
|
||||
<text x="298.7" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">15</text>
|
||||
<text x="369.8" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">20</text>
|
||||
<text x="440.8" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">25</text>
|
||||
<text x="511.8" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">30</text>
|
||||
<text x="85.7" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">0</text>
|
||||
<text x="67.6" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text>
|
||||
<text x="67.6" y="286.8" text-anchor="end" font-size="12" font-family="Verdana">0.05</text>
|
||||
<text x="67.6" y="235.7" text-anchor="end" font-size="12" font-family="Verdana">0.1</text>
|
||||
<text x="67.6" y="184.7" text-anchor="end" font-size="12" font-family="Verdana">0.15</text>
|
||||
<text x="67.6" y="133.6" text-anchor="end" font-size="12" font-family="Verdana">0.2</text>
|
||||
<text x="67.6" y="82.6" text-anchor="end" font-size="12" font-family="Verdana">0.25</text>
|
||||
<text x="67.6" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text></g>
|
||||
<g id="yLabel">
|
||||
<text x="30.2" y="198.7" text-anchor="middle" transform = "rotate(-90 30.2 198.7 )" font-size="14" font-family="Verdana">Probability</text></g>
|
||||
<g id="xLabel">
|
||||
<text x="298.7" y="388" text-anchor="middle" font-size="14" font-family="Verdana">Random Variable</text></g>
|
||||
<g id="plotLines" stroke-width="2"><g clip-path="url(#plot_window)" stroke="rgb(0,0,139)" fill="rgb(0,0,139)" stroke-width="1"><path d="M80.38,335.4 L80.38,335.4 L80.38,296.3 L82.51,296.3 L82.51,335.4 L94.58,335.4 L94.58,196 L96.71,196 L96.71,335.4 L108.8,335.4 L108.8,100.7 L110.9,100.7 L110.9,335.4 L123,335.4 L123,86.85 L125.1,86.85 L125.1,335.4 L137.2,335.4 L137.2,149.4 L139.3,149.4 L139.3,335.4 L151.4,335.4 L151.4,230.7 L153.5,230.7 L153.5,335.4 L165.6,335.4 L165.6,289.3 L167.7,289.3 L167.7,335.4 L179.8,335.4 L179.8,319.1 L181.9,319.1 L181.9,335.4 L194,335.4 L194,330.7 L196.1,330.7 L196.1,335.4 L208.2,335.4 L208.2,334.3 L210.3,334.3 L210.3,335.4 L222.4,335.4 L222.4,335.2 L224.5,335.2 L224.5,335.4 L236.6,335.4 L236.6,335.4 L238.7,335.4 L238.7,335.4 L250.8,335.4 L250.8,335.4 L252.9,335.4 L252.9,335.4 L265,335.4 L265,335.4 L267.1,335.4 L267.1,335.4 L279.2,335.4 L279.2,335.4 L281.3,335.4 L281.3,335.4 L293.4,335.4 L293.4,335.4 L295.5,335.4 L295.5,335.4 L307.6,335.4 L307.6,335.4 L309.7,335.4 L309.7,335.4 L321.8,335.4 L321.8,335.4 L323.9,335.4 L323.9,335.4 L336,335.4 L336,335.4 L338.2,335.4 L338.2,335.4 L350.2,335.4 L350.2,335.4 L352.4,335.4 L352.4,335.4 L364.4,335.4 L364.4,335.4 L366.6,335.4 L366.6,335.4 L378.6,335.4 L378.6,335.4 L380.8,335.4 L380.8,335.4 L392.8,335.4 L392.8,335.4 L395,335.4 L395,335.4 L407,335.4 L407,335.4 L409.2,335.4 L409.2,335.4 L421.2,335.4 L421.2,335.4 L423.4,335.4 L423.4,335.4 L435.4,335.4 L435.4,335.4 L437.6,335.4 L437.6,335.4 L449.6,335.4 L449.6,335.4 L451.8,335.4 L451.8,335.4 L463.8,335.4 L463.8,335.4 L466,335.4 L466,335.4 L478,335.4 L478,335.4 L480.2,335.4 L480.2,335.4 L492.3,335.4 L492.3,335.4 L494.4,335.4 L494.4,335.4 L506.5,335.4 L506.5,335.4 L508.6,335.4 L508.6,335.4 L508.6,335.4 Z" fill="rgb(0,0,139)"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(139,0,0)" fill="rgb(139,0,0)" stroke-width="1"><path d="M82.51,335.4 L82.51,335.4 L82.51,334.4 L84.64,334.4 L84.64,335.4 L96.71,335.4 L96.71,327.3 L98.84,327.3 L98.84,335.4 L110.9,335.4 L110.9,304 L113,304 L113,335.4 L125.1,335.4 L125.1,258.4 L127.2,258.4 L127.2,335.4 L139.3,335.4 L139.3,200.6 L141.4,200.6 L141.4,335.4 L153.5,335.4 L153.5,155.9 L155.6,155.9 L155.6,335.4 L167.7,335.4 L167.7,146.5 L169.9,146.5 L169.9,335.4 L181.9,335.4 L181.9,173.9 L184.1,173.9 L184.1,335.4 L196.1,335.4 L196.1,221.2 L198.3,221.2 L198.3,335.4 L210.3,335.4 L210.3,267.6 L212.5,267.6 L212.5,335.4 L224.5,335.4 L224.5,301.3 L226.7,301.3 L226.7,335.4 L238.7,335.4 L238.7,320.8 L240.9,320.8 L240.9,335.4 L252.9,335.4 L252.9,330 L255.1,330 L255.1,335.4 L267.1,335.4 L267.1,333.7 L269.3,333.7 L269.3,335.4 L281.3,335.4 L281.3,334.9 L283.5,334.9 L283.5,335.4 L295.5,335.4 L295.5,335.3 L297.7,335.3 L297.7,335.4 L309.7,335.4 L309.7,335.4 L311.9,335.4 L311.9,335.4 L323.9,335.4 L323.9,335.4 L326.1,335.4 L326.1,335.4 L338.2,335.4 L338.2,335.4 L340.3,335.4 L340.3,335.4 L352.4,335.4 L352.4,335.4 L354.5,335.4 L354.5,335.4 L366.6,335.4 L366.6,335.4 L368.7,335.4 L368.7,335.4 L380.8,335.4 L380.8,335.4 L382.9,335.4 L382.9,335.4 L395,335.4 L395,335.4 L397.1,335.4 L397.1,335.4 L409.2,335.4 L409.2,335.4 L411.3,335.4 L411.3,335.4 L423.4,335.4 L423.4,335.4 L425.5,335.4 L425.5,335.4 L437.6,335.4 L437.6,335.4 L439.7,335.4 L439.7,335.4 L451.8,335.4 L451.8,335.4 L453.9,335.4 L453.9,335.4 L466,335.4 L466,335.4 L468.1,335.4 L468.1,335.4 L480.2,335.4 L480.2,335.4 L482.3,335.4 L482.3,335.4 L494.4,335.4 L494.4,335.4 L496.5,335.4 L496.5,335.4 L508.6,335.4 L508.6,335.4 L510.7,335.4 L510.7,335.4 L510.7,335.4 Z" fill="rgb(139,0,0)"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(0,100,0)" fill="rgb(0,100,0)" stroke-width="1"><path d="M84.64,335.4 L84.64,335.4 L84.64,335.4 L86.77,335.4 L86.77,335.4 L98.84,335.4 L98.84,335.4 L101,335.4 L101,335.4 L113,335.4 L113,335.4 L115.2,335.4 L115.2,335.4 L127.2,335.4 L127.2,335.4 L129.4,335.4 L129.4,335.4 L141.4,335.4 L141.4,335.4 L143.6,335.4 L143.6,335.4 L155.6,335.4 L155.6,335.3 L157.8,335.3 L157.8,335.4 L169.9,335.4 L169.9,335 L172,335 L172,335.4 L184.1,335.4 L184.1,333.9 L186.2,333.9 L186.2,335.4 L198.3,335.4 L198.3,330.7 L200.4,330.7 L200.4,335.4 L212.5,335.4 L212.5,323.4 L214.6,323.4 L214.6,335.4 L226.7,335.4 L226.7,308.9 L228.8,308.9 L228.8,335.4 L240.9,335.4 L240.9,285.4 L243,285.4 L243,335.4 L255.1,335.4 L255.1,253.8 L257.2,253.8 L257.2,335.4 L269.3,335.4 L269.3,219.9 L271.4,219.9 L271.4,335.4 L283.5,335.4 L283.5,193.4 L285.6,193.4 L285.6,335.4 L297.7,335.4 L297.7,183.3 L299.8,183.3 L299.8,335.4 L311.9,335.4 L311.9,193.4 L314,193.4 L314,335.4 L326.1,335.4 L326.1,219.9 L328.2,219.9 L328.2,335.4 L340.3,335.4 L340.3,253.8 L342.4,253.8 L342.4,335.4 L354.5,335.4 L354.5,285.4 L356.6,285.4 L356.6,335.4 L368.7,335.4 L368.7,308.9 L370.8,308.9 L370.8,335.4 L382.9,335.4 L382.9,323.4 L385,323.4 L385,335.4 L397.1,335.4 L397.1,330.7 L399.2,330.7 L399.2,335.4 L411.3,335.4 L411.3,333.9 L413.4,333.9 L413.4,335.4 L425.5,335.4 L425.5,335 L427.6,335 L427.6,335.4 L439.7,335.4 L439.7,335.3 L441.8,335.3 L441.8,335.4 L453.9,335.4 L453.9,335.4 L456,335.4 L456,335.4 L468.1,335.4 L468.1,335.4 L470.2,335.4 L470.2,335.4 L482.3,335.4 L482.3,335.4 L484.4,335.4 L484.4,335.4 L496.5,335.4 L496.5,335.4 L498.6,335.4 L498.6,335.4 L510.7,335.4 L510.7,335.4 L512.8,335.4 L512.8,335.4 L512.8,335.4 Z" fill="rgb(0,100,0)"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(255,140,0)" fill="rgb(255,140,0)" stroke-width="1"><path d="M86.77,335.4 L86.77,335.4 L86.77,335.4 L88.9,335.4 L88.9,335.4 L101,335.4 L101,335.4 L103.1,335.4 L103.1,335.4 L115.2,335.4 L115.2,335.4 L117.3,335.4 L117.3,335.4 L129.4,335.4 L129.4,335.4 L131.5,335.4 L131.5,335.4 L143.6,335.4 L143.6,335.4 L145.7,335.4 L145.7,335.4 L157.8,335.4 L157.8,335.4 L159.9,335.4 L159.9,335.4 L172,335.4 L172,335.4 L174.1,335.4 L174.1,335.4 L186.2,335.4 L186.2,335.4 L188.3,335.4 L188.3,335.4 L200.4,335.4 L200.4,335.4 L202.5,335.4 L202.5,335.4 L214.6,335.4 L214.6,335.4 L216.7,335.4 L216.7,335.4 L228.8,335.4 L228.8,335.4 L230.9,335.4 L230.9,335.4 L243,335.4 L243,335.4 L245.1,335.4 L245.1,335.4 L257.2,335.4 L257.2,335.4 L259.3,335.4 L259.3,335.4 L271.4,335.4 L271.4,335.4 L273.5,335.4 L273.5,335.4 L285.6,335.4 L285.6,335.4 L287.7,335.4 L287.7,335.4 L299.8,335.4 L299.8,335.3 L301.9,335.3 L301.9,335.4 L314,335.4 L314,334.9 L316.1,334.9 L316.1,335.4 L328.2,335.4 L328.2,333.7 L330.3,333.7 L330.3,335.4 L342.4,335.4 L342.4,330 L344.5,330 L344.5,335.4 L356.6,335.4 L356.6,320.8 L358.7,320.8 L358.7,335.4 L370.8,335.4 L370.8,301.3 L372.9,301.3 L372.9,335.4 L385,335.4 L385,267.6 L387.2,267.6 L387.2,335.4 L399.2,335.4 L399.2,221.2 L401.4,221.2 L401.4,335.4 L413.4,335.4 L413.4,173.9 L415.6,173.9 L415.6,335.4 L427.6,335.4 L427.6,146.5 L429.8,146.5 L429.8,335.4 L441.8,335.4 L441.8,155.9 L444,155.9 L444,335.4 L456,335.4 L456,200.6 L458.2,200.6 L458.2,335.4 L470.2,335.4 L470.2,258.4 L472.4,258.4 L472.4,335.4 L484.4,335.4 L484.4,304 L486.6,304 L486.6,335.4 L498.6,335.4 L498.6,327.3 L500.8,327.3 L500.8,335.4 L512.8,335.4 L512.8,334.4 L515,334.4 L515,335.4 L515,335.4 Z" fill="rgb(255,140,0)"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(127,255,0)" fill="rgb(127,255,0)" stroke-width="1"><path d="M88.9,335.4 L88.9,335.4 L88.9,335.4 L91.03,335.4 L91.03,335.4 L103.1,335.4 L103.1,335.4 L105.2,335.4 L105.2,335.4 L117.3,335.4 L117.3,335.4 L119.4,335.4 L119.4,335.4 L131.5,335.4 L131.5,335.4 L133.6,335.4 L133.6,335.4 L145.7,335.4 L145.7,335.4 L147.8,335.4 L147.8,335.4 L159.9,335.4 L159.9,335.4 L162,335.4 L162,335.4 L174.1,335.4 L174.1,335.4 L176.2,335.4 L176.2,335.4 L188.3,335.4 L188.3,335.4 L190.4,335.4 L190.4,335.4 L202.5,335.4 L202.5,335.4 L204.6,335.4 L204.6,335.4 L216.7,335.4 L216.7,335.4 L218.9,335.4 L218.9,335.4 L230.9,335.4 L230.9,335.4 L233.1,335.4 L233.1,335.4 L245.1,335.4 L245.1,335.4 L247.3,335.4 L247.3,335.4 L259.3,335.4 L259.3,335.4 L261.5,335.4 L261.5,335.4 L273.5,335.4 L273.5,335.4 L275.7,335.4 L275.7,335.4 L287.7,335.4 L287.7,335.4 L289.9,335.4 L289.9,335.4 L301.9,335.4 L301.9,335.4 L304.1,335.4 L304.1,335.4 L316.1,335.4 L316.1,335.4 L318.3,335.4 L318.3,335.4 L330.3,335.4 L330.3,335.4 L332.5,335.4 L332.5,335.4 L344.5,335.4 L344.5,335.4 L346.7,335.4 L346.7,335.4 L358.7,335.4 L358.7,335.4 L360.9,335.4 L360.9,335.4 L372.9,335.4 L372.9,335.2 L375.1,335.2 L375.1,335.4 L387.2,335.4 L387.2,334.3 L389.3,334.3 L389.3,335.4 L401.4,335.4 L401.4,330.7 L403.5,330.7 L403.5,335.4 L415.6,335.4 L415.6,319.1 L417.7,319.1 L417.7,335.4 L429.8,335.4 L429.8,289.3 L431.9,289.3 L431.9,335.4 L444,335.4 L444,230.7 L446.1,230.7 L446.1,335.4 L458.2,335.4 L458.2,149.4 L460.3,149.4 L460.3,335.4 L472.4,335.4 L472.4,86.85 L474.5,86.85 L474.5,335.4 L486.6,335.4 L486.6,100.7 L488.7,100.7 L488.7,335.4 L500.8,335.4 L500.8,196 L502.9,196 L502.9,335.4 L515,335.4 L515,296.3 L517.1,296.3 L517.1,335.4 L517.1,335.4 Z" fill="rgb(127,255,0)"/></g>
|
||||
</g>
|
||||
<g id="plotPoints" clip-path="url(#plot_window)"></g>
|
||||
<g id="legendBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="1"><rect x="532.9" y="62" width="205.1" height="165"/><rect x="532.9" y="62" width="205.1" height="165"/></g>
|
||||
<g id="legendPoints"><g stroke="rgb(0,0,139)" stroke-width="1"><line x1="547.9" y1="92" x2="562.9" y2="92"/></g>
|
||||
<g stroke="rgb(139,0,0)" stroke-width="1"><line x1="547.9" y1="122" x2="562.9" y2="122"/></g>
|
||||
<g stroke="rgb(0,100,0)" stroke-width="1"><line x1="547.9" y1="152" x2="562.9" y2="152"/></g>
|
||||
<g stroke="rgb(255,140,0)" stroke-width="1"><line x1="547.9" y1="182" x2="562.9" y2="182"/></g>
|
||||
<g stroke="rgb(127,255,0)" stroke-width="1"><line x1="547.9" y1="212" x2="562.9" y2="212"/></g>
|
||||
</g>
|
||||
<g id="legendText">
|
||||
<text x="570.4" y="92" font-size="15" font-family="Verdana">N=500, r=50, n=30</text>
|
||||
<text x="570.4" y="122" font-size="15" font-family="Verdana">N=500, r=100, n=30</text>
|
||||
<text x="570.4" y="152" font-size="15" font-family="Verdana">N=500, r=250, n=30</text>
|
||||
<text x="570.4" y="182" font-size="15" font-family="Verdana">N=500, r=400, n=30</text>
|
||||
<text x="570.4" y="212" font-size="15" font-family="Verdana">N=500, r=450, n=30</text></g>
|
||||
<g id="title">
|
||||
<text x="375" y="40" text-anchor="middle" font-size="20" font-family="Verdana">Hypergeometric Distribution PDF</text></g>
|
||||
<g id="plotXValues"></g>
|
||||
<g id="plotYValues"></g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
BIN
doc/sf_and_dist/graphs/hypergeometric_pdf_2.png
Normal file
|
After Width: | Height: | Size: 40 KiB |
70
doc/sf_and_dist/graphs/hypergeometric_pdf_2.svg
Normal file
@@ -0,0 +1,70 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="750" height ="400" version="1.1"
|
||||
xmlns:svg ="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns ="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) -->
|
||||
<!-- Use, modification and distribution of Boost.Plot subject to the -->
|
||||
<!-- Boost Software License, Version 1.0.-->
|
||||
<!-- (See accompanying file LICENSE_1_0.txt -->
|
||||
<!-- or copy at http://www.boost.org/LICENSE_1_0.txt) -->
|
||||
|
||||
<clipPath id="plot_window"><rect x="79.6" y="63" width="438.3" height="271.4"/></clipPath>
|
||||
<g id="imageBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="0" y="0" width="750" height="400"/></g>
|
||||
<g id="plotBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="78.6" y="62" width="440.3" height="273.4"/></g>
|
||||
<g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="yMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="xMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="xMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="yAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="82.92" y1="62" x2="82.92" y2="340.4"/><line x1="78.6" y1="62" x2="78.6" y2="335.4"/></g>
|
||||
<g id="xAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="73.6" y1="335.4" x2="518.9" y2="335.4"/><line x1="73.6" y1="335.4" x2="518.9" y2="335.4"/></g>
|
||||
<g id="yMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M76.6,322.6 L78.6,322.6 M76.6,309.9 L78.6,309.9 M76.6,297.1 L78.6,297.1 M76.6,284.4 L78.6,284.4 M76.6,258.9 L78.6,258.9 M76.6,246.1 L78.6,246.1 M76.6,233.4 L78.6,233.4 M76.6,220.6 L78.6,220.6 M76.6,195.1 L78.6,195.1 M76.6,182.4 L78.6,182.4 M76.6,169.6 L78.6,169.6 M76.6,156.9 L78.6,156.9 M76.6,131.4 L78.6,131.4 M76.6,118.6 L78.6,118.6 M76.6,105.8 L78.6,105.8 M76.6,93.09 L78.6,93.09 M76.6,67.59 L78.6,67.59 M76.6,335.4 L78.6,335.4 " fill="none"/></g>
|
||||
<g id="xMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"></g>
|
||||
<g id="yMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M73.6,335.4 L78.6,335.4 M73.6,271.6 L78.6,271.6 M73.6,207.9 L78.6,207.9 M73.6,144.1 L78.6,144.1 M73.6,80.34 L78.6,80.34 M73.6,335.4 L78.6,335.4 " fill="none"/></g>
|
||||
<g id="xMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M82.92,335.4 L82.92,340.4 M169.2,335.4 L169.2,340.4 M255.6,335.4 L255.6,340.4 M341.9,335.4 L341.9,340.4 M428.2,335.4 L428.2,340.4 M514.6,335.4 L514.6,340.4 M82.92,335.4 L82.92,340.4 " fill="none"/></g>
|
||||
<g id="plotLabels">
|
||||
<text x="82.92" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">0</text>
|
||||
<text x="169.2" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">10</text>
|
||||
<text x="255.6" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">20</text>
|
||||
<text x="341.9" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">30</text>
|
||||
<text x="428.2" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">40</text>
|
||||
<text x="514.6" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">50</text>
|
||||
<text x="82.92" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">0</text>
|
||||
<text x="67.6" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text>
|
||||
<text x="67.6" y="274" text-anchor="end" font-size="12" font-family="Verdana">0.05</text>
|
||||
<text x="67.6" y="210.3" text-anchor="end" font-size="12" font-family="Verdana">0.1</text>
|
||||
<text x="67.6" y="146.5" text-anchor="end" font-size="12" font-family="Verdana">0.15</text>
|
||||
<text x="67.6" y="82.74" text-anchor="end" font-size="12" font-family="Verdana">0.2</text>
|
||||
<text x="67.6" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text></g>
|
||||
<g id="yLabel">
|
||||
<text x="30.2" y="198.7" text-anchor="middle" transform = "rotate(-90 30.2 198.7 )" font-size="14" font-family="Verdana">Probability</text></g>
|
||||
<g id="xLabel">
|
||||
<text x="298.7" y="388" text-anchor="middle" font-size="14" font-family="Verdana">Random Variable</text></g>
|
||||
<g id="plotLines" stroke-width="2"><g clip-path="url(#plot_window)" stroke="rgb(0,0,139)" fill="rgb(0,0,139)" stroke-width="1"><path d="M79.68,335.4 L79.68,335.4 L79.68,330.5 L80.97,330.5 L80.97,335.4 L88.31,335.4 L88.31,304.8 L89.61,304.8 L89.61,335.4 L96.94,335.4 L96.95,244.1 L98.24,244.1 L98.24,335.4 L105.6,335.4 L105.6,161.4 L106.9,161.4 L106.9,335.4 L114.2,335.4 L114.2,97.54 L115.5,97.54 L115.5,335.4 L122.8,335.4 L122.8,86.85 L124.1,86.85 L124.1,335.4 L131.5,335.4 L131.5,128.8 L132.8,128.8 L132.8,335.4 L140.1,335.4 L140.1,195 L141.4,195 L141.4,335.4 L148.7,335.4 L148.7,255.9 L150,255.9 L150,335.4 L157.4,335.4 L157.4,297.3 L158.7,297.3 L158.7,335.4 L166,335.4 L166,319.8 L167.3,319.8 L167.3,335.4 L174.6,335.4 L174.6,329.9 L175.9,329.9 L175.9,335.4 L183.3,335.4 L183.3,333.7 L184.6,333.7 L184.6,335.4 L191.9,335.4 L191.9,334.9 L193.2,334.9 L193.2,335.4 L200.5,335.4 L200.5,335.3 L201.8,335.3 L201.8,335.4 L209.2,335.4 L209.2,335.4 L210.5,335.4 L210.5,335.4 L217.8,335.4 L217.8,335.4 L219.1,335.4 L219.1,335.4 L226.4,335.4 L226.4,335.4 L227.7,335.4 L227.7,335.4 L235.1,335.4 L235.1,335.4 L236.4,335.4 L236.4,335.4 L243.7,335.4 L243.7,335.4 L245,335.4 L245,335.4 L252.3,335.4 L252.3,335.4 L253.6,335.4 L253.6,335.4 L261,335.4 L261,335.4 L262.3,335.4 L262.3,335.4 L269.6,335.4 L269.6,335.4 L270.9,335.4 L270.9,335.4 L278.2,335.4 L278.2,335.4 L279.5,335.4 L279.5,335.4 L286.9,335.4 L286.9,335.4 L288.2,335.4 L288.2,335.4 L295.5,335.4 L295.5,335.4 L296.8,335.4 L296.8,335.4 L304.1,335.4 L304.1,335.4 L305.4,335.4 L305.4,335.4 L312.8,335.4 L312.8,335.4 L314.1,335.4 L314.1,335.4 L321.4,335.4 L321.4,335.4 L322.7,335.4 L322.7,335.4 L330,335.4 L330,335.4 L331.3,335.4 L331.3,335.4 L338.7,335.4 L338.7,335.4 L340,335.4 L340,335.4 L347.3,335.4 L347.3,335.4 L348.6,335.4 L348.6,335.4 L355.9,335.4 L355.9,335.4 L357.2,335.4 L357.2,335.4 L364.6,335.4 L364.6,335.4 L365.9,335.4 L365.9,335.4 L373.2,335.4 L373.2,335.4 L374.5,335.4 L374.5,335.4 L381.8,335.4 L381.8,335.4 L383.1,335.4 L383.1,335.4 L390.5,335.4 L390.5,335.4 L391.8,335.4 L391.8,335.4 L399.1,335.4 L399.1,335.4 L400.4,335.4 L400.4,335.4 L407.7,335.4 L407.7,335.4 L409,335.4 L409,335.4 L416.4,335.4 L416.4,335.4 L417.7,335.4 L417.7,335.4 L425,335.4 L425,335.4 L426.3,335.4 L426.3,335.4 L433.6,335.4 L433.6,335.4 L434.9,335.4 L434.9,335.4 L442.3,335.4 L442.3,335.4 L443.6,335.4 L443.6,335.4 L450.9,335.4 L450.9,335.4 L452.2,335.4 L452.2,335.4 L459.5,335.4 L459.5,335.4 L460.8,335.4 L460.8,335.4 L468.2,335.4 L468.2,335.4 L469.5,335.4 L469.5,335.4 L476.8,335.4 L476.8,335.4 L478.1,335.4 L478.1,335.4 L485.4,335.4 L485.4,335.4 L486.7,335.4 L486.7,335.4 L494.1,335.4 L494.1,335.4 L495.4,335.4 L495.4,335.4 L502.7,335.4 L502.7,335.4 L504,335.4 L504,335.4 L511.3,335.4 L511.3,335.4 L512.6,335.4 L512.6,335.4 L512.6,335.4 Z" fill="rgb(0,0,139)"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(139,0,0)" fill="rgb(139,0,0)" stroke-width="1"><path d="M80.97,335.4 L80.97,335.4 L80.97,335.4 L82.27,335.4 L82.27,335.4 L89.61,335.4 L89.61,335.3 L90.9,335.3 L90.9,335.4 L98.24,335.4 L98.24,334.5 L99.53,334.5 L99.53,335.4 L106.9,335.4 L106.9,331.3 L108.2,331.3 L108.2,335.4 L115.5,335.4 L115.5,322.2 L116.8,322.2 L116.8,335.4 L124.1,335.4 L124.1,302.6 L125.4,302.6 L125.4,335.4 L132.8,335.4 L132.8,269.8 L134.1,269.8 L134.1,335.4 L141.4,335.4 L141.4,226.8 L142.7,226.8 L142.7,335.4 L150,335.4 L150,183.8 L151.3,183.8 L151.3,335.4 L158.7,335.4 L158.7,154.1 L160,154.1 L160,335.4 L167.3,335.4 L167.3,147.5 L168.6,147.5 L168.6,335.4 L175.9,335.4 L175.9,165 L177.2,165 L177.2,335.4 L184.6,335.4 L184.6,199.3 L185.9,199.3 L185.9,335.4 L193.2,335.4 L193.2,238.9 L194.5,238.9 L194.5,335.4 L201.8,335.4 L201.8,274.5 L203.1,274.5 L203.1,335.4 L210.5,335.4 L210.5,300.9 L211.8,300.9 L211.8,335.4 L219.1,335.4 L219.1,317.9 L220.4,317.9 L220.4,335.4 L227.7,335.4 L227.7,327.4 L229,327.4 L229,335.4 L236.4,335.4 L236.4,332.1 L237.7,332.1 L237.7,335.4 L245,335.4 L245,334.2 L246.3,334.2 L246.3,335.4 L253.6,335.4 L253.6,335 L254.9,335 L254.9,335.4 L262.3,335.4 L262.3,335.3 L263.6,335.3 L263.6,335.4 L270.9,335.4 L270.9,335.4 L272.2,335.4 L272.2,335.4 L279.5,335.4 L279.5,335.4 L280.8,335.4 L280.8,335.4 L288.2,335.4 L288.2,335.4 L289.5,335.4 L289.5,335.4 L296.8,335.4 L296.8,335.4 L298.1,335.4 L298.1,335.4 L305.4,335.4 L305.4,335.4 L306.7,335.4 L306.7,335.4 L314.1,335.4 L314.1,335.4 L315.4,335.4 L315.4,335.4 L322.7,335.4 L322.7,335.4 L324,335.4 L324,335.4 L331.3,335.4 L331.3,335.4 L332.6,335.4 L332.6,335.4 L340,335.4 L340,335.4 L341.3,335.4 L341.3,335.4 L348.6,335.4 L348.6,335.4 L349.9,335.4 L349.9,335.4 L357.2,335.4 L357.2,335.4 L358.5,335.4 L358.5,335.4 L365.9,335.4 L365.9,335.4 L367.2,335.4 L367.2,335.4 L374.5,335.4 L374.5,335.4 L375.8,335.4 L375.8,335.4 L383.1,335.4 L383.1,335.4 L384.4,335.4 L384.4,335.4 L391.8,335.4 L391.8,335.4 L393.1,335.4 L393.1,335.4 L400.4,335.4 L400.4,335.4 L401.7,335.4 L401.7,335.4 L409,335.4 L409,335.4 L410.3,335.4 L410.3,335.4 L417.7,335.4 L417.7,335.4 L419,335.4 L419,335.4 L426.3,335.4 L426.3,335.4 L427.6,335.4 L427.6,335.4 L434.9,335.4 L434.9,335.4 L436.2,335.4 L436.2,335.4 L443.6,335.4 L443.6,335.4 L444.9,335.4 L444.9,335.4 L452.2,335.4 L452.2,335.4 L453.5,335.4 L453.5,335.4 L460.8,335.4 L460.8,335.4 L462.1,335.4 L462.1,335.4 L469.5,335.4 L469.5,335.4 L470.8,335.4 L470.8,335.4 L478.1,335.4 L478.1,335.4 L479.4,335.4 L479.4,335.4 L486.7,335.4 L486.7,335.4 L488,335.4 L488,335.4 L495.4,335.4 L495.4,335.4 L496.7,335.4 L496.7,335.4 L504,335.4 L504,335.4 L505.3,335.4 L505.3,335.4 L512.6,335.4 L512.6,335.4 L513.9,335.4 L513.9,335.4 L513.9,335.4 Z" fill="rgb(139,0,0)"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(0,100,0)" fill="rgb(0,100,0)" stroke-width="1"><path d="M82.27,335.4 L82.27,335.4 L82.27,335.4 L83.56,335.4 L83.56,335.4 L90.9,335.4 L90.9,335.4 L92.2,335.4 L92.2,335.4 L99.53,335.4 L99.53,335.4 L100.8,335.4 L100.8,335.4 L108.2,335.4 L108.2,335.4 L109.5,335.4 L109.5,335.4 L116.8,335.4 L116.8,335.4 L118.1,335.4 L118.1,335.4 L125.4,335.4 L125.4,335.4 L126.7,335.4 L126.7,335.4 L134.1,335.4 L134.1,335.4 L135.4,335.4 L135.4,335.4 L142.7,335.4 L142.7,335.4 L144,335.4 L144,335.4 L151.3,335.4 L151.3,335.4 L152.6,335.4 L152.6,335.4 L160,335.4 L160,335.4 L161.3,335.4 L161.3,335.4 L168.6,335.4 L168.6,335.4 L169.9,335.4 L169.9,335.4 L177.2,335.4 L177.2,335.4 L178.5,335.4 L178.5,335.4 L185.9,335.4 L185.9,335.3 L187.2,335.3 L187.2,335.4 L194.5,335.4 L194.5,335.2 L195.8,335.2 L195.8,335.4 L203.1,335.4 L203.1,334.7 L204.4,334.7 L204.4,335.4 L211.8,335.4 L211.8,333.7 L213.1,333.7 L213.1,335.4 L220.4,335.4 L220.4,331.3 L221.7,331.3 L221.7,335.4 L229,335.4 L229,326.5 L230.3,326.5 L230.3,335.4 L237.7,335.4 L237.7,318.1 L239,318.1 L239,335.4 L246.3,335.4 L246.3,304.5 L247.6,304.5 L247.6,335.4 L254.9,335.4 L254.9,285 L256.2,285 L256.2,335.4 L263.6,335.4 L263.6,260.5 L264.9,260.5 L264.9,335.4 L272.2,335.4 L272.2,233.6 L273.5,233.6 L273.5,335.4 L280.8,335.4 L280.8,208.7 L282.1,208.7 L282.1,335.4 L289.5,335.4 L289.5,190.9 L290.8,190.9 L290.8,335.4 L298.1,335.4 L298.1,184.5 L299.4,184.5 L299.4,335.4 L306.7,335.4 L306.7,190.9 L308,190.9 L308,335.4 L315.4,335.4 L315.4,208.7 L316.7,208.7 L316.7,335.4 L324,335.4 L324,233.6 L325.3,233.6 L325.3,335.4 L332.6,335.4 L332.6,260.5 L333.9,260.5 L333.9,335.4 L341.3,335.4 L341.3,285 L342.6,285 L342.6,335.4 L349.9,335.4 L349.9,304.5 L351.2,304.5 L351.2,335.4 L358.5,335.4 L358.5,318.1 L359.8,318.1 L359.8,335.4 L367.2,335.4 L367.2,326.5 L368.5,326.5 L368.5,335.4 L375.8,335.4 L375.8,331.3 L377.1,331.3 L377.1,335.4 L384.4,335.4 L384.4,333.7 L385.7,333.7 L385.7,335.4 L393.1,335.4 L393.1,334.7 L394.3,334.7 L394.3,335.4 L401.7,335.4 L401.7,335.2 L403,335.2 L403,335.4 L410.3,335.4 L410.3,335.3 L411.6,335.3 L411.6,335.4 L419,335.4 L419,335.4 L420.2,335.4 L420.2,335.4 L427.6,335.4 L427.6,335.4 L428.9,335.4 L428.9,335.4 L436.2,335.4 L436.2,335.4 L437.5,335.4 L437.5,335.4 L444.9,335.4 L444.9,335.4 L446.1,335.4 L446.1,335.4 L453.5,335.4 L453.5,335.4 L454.8,335.4 L454.8,335.4 L462.1,335.4 L462.1,335.4 L463.4,335.4 L463.4,335.4 L470.8,335.4 L470.8,335.4 L472,335.4 L472,335.4 L479.4,335.4 L479.4,335.4 L480.7,335.4 L480.7,335.4 L488,335.4 L488,335.4 L489.3,335.4 L489.3,335.4 L496.7,335.4 L496.7,335.4 L497.9,335.4 L497.9,335.4 L505.3,335.4 L505.3,335.4 L506.6,335.4 L506.6,335.4 L513.9,335.4 L513.9,335.4 L515.2,335.4 L515.2,335.4 L515.2,335.4 Z" fill="rgb(0,100,0)"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(255,140,0)" fill="rgb(255,140,0)" stroke-width="1"><path d="M83.56,335.4 L83.56,335.4 L83.56,335.4 L84.86,335.4 L84.86,335.4 L92.2,335.4 L92.2,335.4 L93.49,335.4 L93.49,335.4 L100.8,335.4 L100.8,335.4 L102.1,335.4 L102.1,335.4 L109.5,335.4 L109.5,335.4 L110.8,335.4 L110.8,335.4 L118.1,335.4 L118.1,335.4 L119.4,335.4 L119.4,335.4 L126.7,335.4 L126.7,335.4 L128,335.4 L128,335.4 L135.4,335.4 L135.4,335.4 L136.7,335.4 L136.7,335.4 L144,335.4 L144,335.4 L145.3,335.4 L145.3,335.4 L152.6,335.4 L152.6,335.4 L153.9,335.4 L153.9,335.4 L161.3,335.4 L161.3,335.4 L162.6,335.4 L162.6,335.4 L169.9,335.4 L169.9,335.4 L171.2,335.4 L171.2,335.4 L178.5,335.4 L178.5,335.4 L179.8,335.4 L179.8,335.4 L187.2,335.4 L187.2,335.4 L188.5,335.4 L188.5,335.4 L195.8,335.4 L195.8,335.4 L197.1,335.4 L197.1,335.4 L204.4,335.4 L204.4,335.4 L205.7,335.4 L205.7,335.4 L213.1,335.4 L213.1,335.4 L214.4,335.4 L214.4,335.4 L221.7,335.4 L221.7,335.4 L223,335.4 L223,335.4 L230.3,335.4 L230.3,335.4 L231.6,335.4 L231.6,335.4 L239,335.4 L239,335.4 L240.3,335.4 L240.3,335.4 L247.6,335.4 L247.6,335.4 L248.9,335.4 L248.9,335.4 L256.2,335.4 L256.2,335.4 L257.5,335.4 L257.5,335.4 L264.9,335.4 L264.9,335.4 L266.2,335.4 L266.2,335.4 L273.5,335.4 L273.5,335.4 L274.8,335.4 L274.8,335.4 L282.1,335.4 L282.1,335.4 L283.4,335.4 L283.4,335.4 L290.8,335.4 L290.8,335.4 L292,335.4 L292,335.4 L299.4,335.4 L299.4,335.4 L300.7,335.4 L300.7,335.4 L308,335.4 L308,335.4 L309.3,335.4 L309.3,335.4 L316.7,335.4 L316.7,335.4 L317.9,335.4 L317.9,335.4 L325.3,335.4 L325.3,335.4 L326.6,335.4 L326.6,335.4 L333.9,335.4 L333.9,335.3 L335.2,335.3 L335.2,335.4 L342.6,335.4 L342.6,335 L343.8,335 L343.8,335.4 L351.2,335.4 L351.2,334.2 L352.5,334.2 L352.5,335.4 L359.8,335.4 L359.8,332.1 L361.1,332.1 L361.1,335.4 L368.5,335.4 L368.5,327.4 L369.7,327.4 L369.7,335.4 L377.1,335.4 L377.1,317.9 L378.4,317.9 L378.4,335.4 L385.7,335.4 L385.7,300.9 L387,300.9 L387,335.4 L394.3,335.4 L394.3,274.5 L395.6,274.5 L395.6,335.4 L403,335.4 L403,238.9 L404.3,238.9 L404.3,335.4 L411.6,335.4 L411.6,199.3 L412.9,199.3 L412.9,335.4 L420.2,335.4 L420.2,165 L421.5,165 L421.5,335.4 L428.9,335.4 L428.9,147.5 L430.2,147.5 L430.2,335.4 L437.5,335.4 L437.5,154.1 L438.8,154.1 L438.8,335.4 L446.1,335.4 L446.1,183.8 L447.4,183.8 L447.4,335.4 L454.8,335.4 L454.8,226.8 L456.1,226.8 L456.1,335.4 L463.4,335.4 L463.4,269.8 L464.7,269.8 L464.7,335.4 L472,335.4 L472,302.6 L473.3,302.6 L473.3,335.4 L480.7,335.4 L480.7,322.2 L482,322.2 L482,335.4 L489.3,335.4 L489.3,331.3 L490.6,331.3 L490.6,335.4 L497.9,335.4 L497.9,334.5 L499.2,334.5 L499.2,335.4 L506.6,335.4 L506.6,335.3 L507.9,335.3 L507.9,335.4 L515.2,335.4 L515.2,335.4 L516.5,335.4 L516.5,335.4 L516.5,335.4 Z" fill="rgb(255,140,0)"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(127,255,0)" fill="rgb(127,255,0)" stroke-width="1"><path d="M84.86,335.4 L84.86,335.4 L84.86,335.4 L86.15,335.4 L86.15,335.4 L93.49,335.4 L93.49,335.4 L94.79,335.4 L94.79,335.4 L102.1,335.4 L102.1,335.4 L103.4,335.4 L103.4,335.4 L110.8,335.4 L110.8,335.4 L112.1,335.4 L112.1,335.4 L119.4,335.4 L119.4,335.4 L120.7,335.4 L120.7,335.4 L128,335.4 L128,335.4 L129.3,335.4 L129.3,335.4 L136.7,335.4 L136.7,335.4 L138,335.4 L138,335.4 L145.3,335.4 L145.3,335.4 L146.6,335.4 L146.6,335.4 L153.9,335.4 L153.9,335.4 L155.2,335.4 L155.2,335.4 L162.6,335.4 L162.6,335.4 L163.9,335.4 L163.9,335.4 L171.2,335.4 L171.2,335.4 L172.5,335.4 L172.5,335.4 L179.8,335.4 L179.8,335.4 L181.1,335.4 L181.1,335.4 L188.5,335.4 L188.5,335.4 L189.7,335.4 L189.7,335.4 L197.1,335.4 L197.1,335.4 L198.4,335.4 L198.4,335.4 L205.7,335.4 L205.7,335.4 L207,335.4 L207,335.4 L214.4,335.4 L214.4,335.4 L215.6,335.4 L215.6,335.4 L223,335.4 L223,335.4 L224.3,335.4 L224.3,335.4 L231.6,335.4 L231.6,335.4 L232.9,335.4 L232.9,335.4 L240.3,335.4 L240.3,335.4 L241.5,335.4 L241.5,335.4 L248.9,335.4 L248.9,335.4 L250.2,335.4 L250.2,335.4 L257.5,335.4 L257.5,335.4 L258.8,335.4 L258.8,335.4 L266.2,335.4 L266.2,335.4 L267.4,335.4 L267.4,335.4 L274.8,335.4 L274.8,335.4 L276.1,335.4 L276.1,335.4 L283.4,335.4 L283.4,335.4 L284.7,335.4 L284.7,335.4 L292,335.4 L292,335.4 L293.3,335.4 L293.3,335.4 L300.7,335.4 L300.7,335.4 L302,335.4 L302,335.4 L309.3,335.4 L309.3,335.4 L310.6,335.4 L310.6,335.4 L317.9,335.4 L317.9,335.4 L319.2,335.4 L319.2,335.4 L326.6,335.4 L326.6,335.4 L327.9,335.4 L327.9,335.4 L335.2,335.4 L335.2,335.4 L336.5,335.4 L336.5,335.4 L343.8,335.4 L343.8,335.4 L345.1,335.4 L345.1,335.4 L352.5,335.4 L352.5,335.4 L353.8,335.4 L353.8,335.4 L361.1,335.4 L361.1,335.4 L362.4,335.4 L362.4,335.4 L369.7,335.4 L369.7,335.4 L371,335.4 L371,335.4 L378.4,335.4 L378.4,335.4 L379.7,335.4 L379.7,335.4 L387,335.4 L387,335.4 L388.3,335.4 L388.3,335.4 L395.6,335.4 L395.6,335.3 L396.9,335.3 L396.9,335.4 L404.3,335.4 L404.3,334.9 L405.6,334.9 L405.6,335.4 L412.9,335.4 L412.9,333.7 L414.2,333.7 L414.2,335.4 L421.5,335.4 L421.5,329.9 L422.8,329.9 L422.8,335.4 L430.2,335.4 L430.2,319.8 L431.5,319.8 L431.5,335.4 L438.8,335.4 L438.8,297.3 L440.1,297.3 L440.1,335.4 L447.4,335.4 L447.4,255.9 L448.7,255.9 L448.7,335.4 L456.1,335.4 L456.1,195 L457.4,195 L457.4,335.4 L464.7,335.4 L464.7,128.8 L466,128.8 L466,335.4 L473.3,335.4 L473.3,86.85 L474.6,86.85 L474.6,335.4 L482,335.4 L482,97.54 L483.3,97.54 L483.3,335.4 L490.6,335.4 L490.6,161.4 L491.9,161.4 L491.9,335.4 L499.2,335.4 L499.2,244.1 L500.5,244.1 L500.5,335.4 L507.9,335.4 L507.9,304.8 L509.2,304.8 L509.2,335.4 L516.5,335.4 L516.5,330.5 L517.8,330.5 L517.8,335.4 L517.8,335.4 Z" fill="rgb(127,255,0)"/></g>
|
||||
</g>
|
||||
<g id="plotPoints" clip-path="url(#plot_window)"></g>
|
||||
<g id="legendBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="1"><rect x="532.9" y="62" width="205.1" height="165"/><rect x="532.9" y="62" width="205.1" height="165"/></g>
|
||||
<g id="legendPoints"><g stroke="rgb(0,0,139)" stroke-width="1"><line x1="547.9" y1="92" x2="562.9" y2="92"/></g>
|
||||
<g stroke="rgb(139,0,0)" stroke-width="1"><line x1="547.9" y1="122" x2="562.9" y2="122"/></g>
|
||||
<g stroke="rgb(0,100,0)" stroke-width="1"><line x1="547.9" y1="152" x2="562.9" y2="152"/></g>
|
||||
<g stroke="rgb(255,140,0)" stroke-width="1"><line x1="547.9" y1="182" x2="562.9" y2="182"/></g>
|
||||
<g stroke="rgb(127,255,0)" stroke-width="1"><line x1="547.9" y1="212" x2="562.9" y2="212"/></g>
|
||||
</g>
|
||||
<g id="legendText">
|
||||
<text x="570.4" y="92" font-size="15" font-family="Verdana">N=500, r=50, n=50</text>
|
||||
<text x="570.4" y="122" font-size="15" font-family="Verdana">N=500, r=50, n=100</text>
|
||||
<text x="570.4" y="152" font-size="15" font-family="Verdana">N=500, r=50, n=250</text>
|
||||
<text x="570.4" y="182" font-size="15" font-family="Verdana">N=500, r=50, n=400</text>
|
||||
<text x="570.4" y="212" font-size="15" font-family="Verdana">N=500, r=50, n=450</text></g>
|
||||
<g id="title">
|
||||
<text x="375" y="40" text-anchor="middle" font-size="20" font-family="Verdana">Hypergeometric Distribution PDF</text></g>
|
||||
<g id="plotXValues"></g>
|
||||
<g id="plotYValues"></g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 19 KiB |
BIN
doc/sf_and_dist/graphs/laplace_pdf.png
Normal file
|
After Width: | Height: | Size: 46 KiB |
74
doc/sf_and_dist/graphs/laplace_pdf.svg
Normal file
@@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="750" height ="400" version="1.1"
|
||||
xmlns:svg ="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns ="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) -->
|
||||
<!-- Use, modification and distribution of Boost.Plot subject to the -->
|
||||
<!-- Boost Software License, Version 1.0.-->
|
||||
<!-- (See accompanying file LICENSE_1_0.txt -->
|
||||
<!-- or copy at http://www.boost.org/LICENSE_1_0.txt) -->
|
||||
|
||||
<clipPath id="plot_window"><rect x="71.2" y="63" width="478" height="271.4"/></clipPath>
|
||||
<g id="imageBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="0" y="0" width="750" height="400"/></g>
|
||||
<g id="plotBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="70.2" y="62" width="480" height="273.4"/></g>
|
||||
<g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="yMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="xMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="xMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="yAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="310.4" y1="62" x2="310.4" y2="340.4"/><line x1="70.2" y1="62" x2="70.2" y2="335.4"/></g>
|
||||
<g id="xAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="65.2" y1="335.4" x2="550.2" y2="335.4"/><line x1="65.2" y1="335.4" x2="550.2" y2="335.4"/></g>
|
||||
<g id="yMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M68.2,330.4 L70.2,330.4 M68.2,325.5 L70.2,325.5 M68.2,320.5 L70.2,320.5 M68.2,315.5 L70.2,315.5 M68.2,305.6 L70.2,305.6 M68.2,300.6 L70.2,300.6 M68.2,295.6 L70.2,295.6 M68.2,290.7 L70.2,290.7 M68.2,280.7 L70.2,280.7 M68.2,275.7 L70.2,275.7 M68.2,270.8 L70.2,270.8 M68.2,265.8 L70.2,265.8 M68.2,255.9 L70.2,255.9 M68.2,250.9 L70.2,250.9 M68.2,245.9 L70.2,245.9 M68.2,241 L70.2,241 M68.2,231 L70.2,231 M68.2,226 L70.2,226 M68.2,221.1 L70.2,221.1 M68.2,216.1 L70.2,216.1 M68.2,206.2 L70.2,206.2 M68.2,201.2 L70.2,201.2 M68.2,196.2 L70.2,196.2 M68.2,191.2 L70.2,191.2 M68.2,181.3 L70.2,181.3 M68.2,176.3 L70.2,176.3 M68.2,171.4 L70.2,171.4 M68.2,166.4 L70.2,166.4 M68.2,156.4 L70.2,156.4 M68.2,151.5 L70.2,151.5 M68.2,146.5 L70.2,146.5 M68.2,141.5 L70.2,141.5 M68.2,131.6 L70.2,131.6 M68.2,126.6 L70.2,126.6 M68.2,121.7 L70.2,121.7 M68.2,116.7 L70.2,116.7 M68.2,106.7 L70.2,106.7 M68.2,101.8 L70.2,101.8 M68.2,96.8 L70.2,96.8 M68.2,91.83 L70.2,91.83 M68.2,81.88 L70.2,81.88 M68.2,76.91 L70.2,76.91 M68.2,71.94 L70.2,71.94 M68.2,66.97 L70.2,66.97 M68.2,335.4 L70.2,335.4 " fill="none"/></g>
|
||||
<g id="xMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M350.5,335.4 L350.5,337.4 M390.5,335.4 L390.5,337.4 M430.6,335.4 L430.6,337.4 M470.7,335.4 L470.7,337.4 M270.3,335.4 L270.3,337.4 M230.2,335.4 L230.2,337.4 M190.1,335.4 L190.1,337.4 M150,335.4 L150,337.4 " fill="none"/></g>
|
||||
<g id="yMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M65.2,335.4 L70.2,335.4 M65.2,310.5 L70.2,310.5 M65.2,285.7 L70.2,285.7 M65.2,260.8 L70.2,260.8 M65.2,236 L70.2,236 M65.2,211.1 L70.2,211.1 M65.2,186.3 L70.2,186.3 M65.2,161.4 L70.2,161.4 M65.2,136.6 L70.2,136.6 M65.2,111.7 L70.2,111.7 M65.2,86.85 L70.2,86.85 M65.2,62 L70.2,62 M65.2,335.4 L70.2,335.4 " fill="none"/></g>
|
||||
<g id="xMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M310.4,335.4 L310.4,340.4 M510.8,335.4 L510.8,340.4 M310.4,335.4 L310.4,340.4 M109.9,335.4 L109.9,340.4 " fill="none"/></g>
|
||||
<g id="plotLabels">
|
||||
<text x="310.4" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">0</text>
|
||||
<text x="510.8" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">5</text>
|
||||
<text x="310.4" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">0</text>
|
||||
<text x="109.9" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">-5</text>
|
||||
<text x="59.2" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text>
|
||||
<text x="59.2" y="312.9" text-anchor="end" font-size="12" font-family="Verdana">0.1</text>
|
||||
<text x="59.2" y="288.1" text-anchor="end" font-size="12" font-family="Verdana">0.2</text>
|
||||
<text x="59.2" y="263.2" text-anchor="end" font-size="12" font-family="Verdana">0.3</text>
|
||||
<text x="59.2" y="238.4" text-anchor="end" font-size="12" font-family="Verdana">0.4</text>
|
||||
<text x="59.2" y="213.5" text-anchor="end" font-size="12" font-family="Verdana">0.5</text>
|
||||
<text x="59.2" y="188.7" text-anchor="end" font-size="12" font-family="Verdana">0.6</text>
|
||||
<text x="59.2" y="163.8" text-anchor="end" font-size="12" font-family="Verdana">0.7</text>
|
||||
<text x="59.2" y="139" text-anchor="end" font-size="12" font-family="Verdana">0.8</text>
|
||||
<text x="59.2" y="114.1" text-anchor="end" font-size="12" font-family="Verdana">0.9</text>
|
||||
<text x="59.2" y="89.25" text-anchor="end" font-size="12" font-family="Verdana">1</text>
|
||||
<text x="59.2" y="64.4" text-anchor="end" font-size="12" font-family="Verdana">1.1</text>
|
||||
<text x="59.2" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text></g>
|
||||
<g id="yLabel">
|
||||
<text x="30.2" y="198.7" text-anchor="middle" transform = "rotate(-90 30.2 198.7 )" font-size="14" font-family="Verdana">Probability</text></g>
|
||||
<g id="xLabel">
|
||||
<text x="310.2" y="388" text-anchor="middle" font-size="14" font-family="Verdana">Random Variable</text></g>
|
||||
<g id="plotLines" stroke-width="2"><g clip-path="url(#plot_window)" stroke="rgb(0,0,139)" stroke-width="1"><path d="M70.2,335.1 L72.6,335.1 L75,335 L77.4,335 L79.8,335 L82.2,335 L84.6,335 L87,334.9 L89.4,334.9 L91.8,334.9 L94.2,334.8 L96.6,334.8 L99,334.8 L101.4,334.7 L103.8,334.7 L106.2,334.6 L108.6,334.6 L111,334.5 L113.4,334.5 L115.8,334.4 L118.2,334.4 L120.6,334.3 L123,334.2 L125.4,334.2 L127.8,334.1 L130.2,334 L132.6,333.9 L135,333.8 L137.4,333.7 L139.8,333.6 L142.2,333.5 L144.6,333.4 L147,333.3 L149.4,333.2 L151.8,333 L154.2,332.9 L156.6,332.7 L159,332.6 L161.4,332.4 L163.8,332.2 L166.2,332 L168.6,331.8 L171,331.6 L173.4,331.3 L175.8,331.1 L178.2,330.8 L180.6,330.5 L183,330.2 L185.4,329.9 L187.8,329.6 L190.2,329.2 L192.6,328.8 L195,328.4 L197.4,328 L199.8,327.5 L202.2,327 L204.6,326.5 L207,326 L209.4,325.4 L211.8,324.8 L214.2,324.1 L216.6,323.4 L219,322.7 L221.4,321.9 L223.8,321.1 L226.2,320.2 L228.6,319.2 L231,318.2 L233.4,317.2 L235.8,316.1 L238.2,314.9 L240.6,313.6 L243,312.2 L245.4,310.8 L247.8,309.3 L250.2,307.7 L252.6,306 L255,304.2 L257.4,302.2 L259.8,300.2 L262.2,298 L264.6,295.7 L267,293.3 L269.4,290.7 L271.8,287.9 L274.2,285 L276.6,281.9 L279,278.6 L281.4,275 L283.8,271.3 L286.2,267.4 L288.6,263.2 L291,258.7 L293.4,254 L295.8,249 L298.2,243.6 L300.6,238 L303,231.9 L305.4,225.6 L307.8,218.8 L310.2,211.6 L312.6,217.9 L315,224.7 L317.4,231.2 L319.8,237.2 L322.2,242.9 L324.6,248.3 L327,253.4 L329.4,258.1 L331.8,262.6 L334.2,266.9 L336.6,270.8 L339,274.6 L341.4,278.1 L343.8,281.5 L346.2,284.6 L348.6,287.5 L351,290.3 L353.4,292.9 L355.8,295.4 L358.2,297.7 L360.6,299.9 L363,302 L365.4,303.9 L367.8,305.8 L370.2,307.5 L372.6,309.1 L375,310.6 L377.4,312.1 L379.8,313.4 L382.2,314.7 L384.6,315.9 L387,317 L389.4,318.1 L391.8,319.1 L394.2,320.1 L396.6,321 L399,321.8 L401.4,322.6 L403.8,323.3 L406.2,324 L408.6,324.7 L411,325.3 L413.4,325.9 L415.8,326.5 L418.2,327 L420.6,327.5 L423,327.9 L425.4,328.4 L427.8,328.8 L430.2,329.2 L432.6,329.5 L435,329.9 L437.4,330.2 L439.8,330.5 L442.2,330.8 L444.6,331 L447,331.3 L449.4,331.5 L451.8,331.8 L454.2,332 L456.6,332.2 L459,332.4 L461.4,332.5 L463.8,332.7 L466.2,332.9 L468.6,333 L471,333.1 L473.4,333.3 L475.8,333.4 L478.2,333.5 L480.6,333.6 L483,333.7 L485.4,333.8 L487.8,333.9 L490.2,334 L492.6,334.1 L495,334.2 L497.4,334.2 L499.8,334.3 L502.2,334.4 L504.6,334.4 L507,334.5 L509.4,334.5 L511.8,334.6 L514.2,334.6 L516.6,334.7 L519,334.7 L521.4,334.8 L523.8,334.8 L526.2,334.8 L528.6,334.9 L531,334.9 L533.4,334.9 L535.8,335 L538.2,335 L540.6,335 L543,335 L545.4,335 L547.8,335.1 L550.2,335.1 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(139,0,0)" stroke-width="1"><path d="M70.2,335.4 L72.6,335.4 L75,335.4 L77.4,335.4 L79.8,335.4 L82.2,335.4 L84.6,335.4 L87,335.4 L89.4,335.4 L91.8,335.4 L94.2,335.4 L96.6,335.4 L99,335.4 L101.4,335.4 L103.8,335.4 L106.2,335.4 L108.6,335.4 L111,335.4 L113.4,335.4 L115.8,335.4 L118.2,335.4 L120.6,335.4 L123,335.4 L125.4,335.4 L127.8,335.4 L130.2,335.4 L132.6,335.4 L135,335.4 L137.4,335.4 L139.8,335.3 L142.2,335.3 L144.6,335.3 L147,335.3 L149.4,335.3 L151.8,335.3 L154.2,335.3 L156.6,335.3 L159,335.3 L161.4,335.3 L163.8,335.2 L166.2,335.2 L168.6,335.2 L171,335.2 L173.4,335.1 L175.8,335.1 L178.2,335.1 L180.6,335 L183,335 L185.4,334.9 L187.8,334.9 L190.2,334.8 L192.6,334.7 L195,334.6 L197.4,334.5 L199.8,334.4 L202.2,334.3 L204.6,334.1 L207,334 L209.4,333.8 L211.8,333.6 L214.2,333.3 L216.6,333.1 L219,332.8 L221.4,332.5 L223.8,332.1 L226.2,331.7 L228.6,331.2 L231,330.7 L233.4,330.1 L235.8,329.4 L238.2,328.6 L240.6,327.7 L243,326.8 L245.4,325.7 L247.8,324.4 L250.2,323 L252.6,321.5 L255,319.7 L257.4,317.7 L259.8,315.4 L262.2,312.9 L264.6,310 L267,306.8 L269.4,303.2 L271.8,299.1 L274.2,294.5 L276.6,289.3 L279,283.4 L281.4,276.8 L283.8,269.3 L286.2,260.9 L288.6,251.4 L291,240.7 L293.4,228.7 L295.8,215.1 L298.2,199.8 L300.6,182.6 L303,163.1 L305.4,141.2 L307.8,116.5 L310.2,88.68 L312.6,113.3 L315,138.3 L317.4,160.6 L319.8,180.3 L322.2,197.8 L324.6,213.3 L327,227.1 L329.4,239.3 L331.8,250.2 L334.2,259.8 L336.6,268.3 L339,275.9 L341.4,282.6 L343.8,288.6 L346.2,293.9 L348.6,298.5 L351,302.7 L353.4,306.4 L355.8,309.7 L358.2,312.6 L360.6,315.2 L363,317.4 L365.4,319.5 L367.8,321.3 L370.2,322.9 L372.6,324.3 L375,325.5 L377.4,326.6 L379.8,327.6 L382.2,328.5 L384.6,329.3 L387,330 L389.4,330.6 L391.8,331.1 L394.2,331.6 L396.6,332 L399,332.4 L401.4,332.8 L403.8,333.1 L406.2,333.3 L408.6,333.6 L411,333.8 L413.4,333.9 L415.8,334.1 L418.2,334.3 L420.6,334.4 L423,334.5 L425.4,334.6 L427.8,334.7 L430.2,334.8 L432.6,334.8 L435,334.9 L437.4,335 L439.8,335 L442.2,335.1 L444.6,335.1 L447,335.1 L449.4,335.2 L451.8,335.2 L454.2,335.2 L456.6,335.2 L459,335.3 L461.4,335.3 L463.8,335.3 L466.2,335.3 L468.6,335.3 L471,335.3 L473.4,335.3 L475.8,335.3 L478.2,335.3 L480.6,335.3 L483,335.4 L485.4,335.4 L487.8,335.4 L490.2,335.4 L492.6,335.4 L495,335.4 L497.4,335.4 L499.8,335.4 L502.2,335.4 L504.6,335.4 L507,335.4 L509.4,335.4 L511.8,335.4 L514.2,335.4 L516.6,335.4 L519,335.4 L521.4,335.4 L523.8,335.4 L526.2,335.4 L528.6,335.4 L531,335.4 L533.4,335.4 L535.8,335.4 L538.2,335.4 L540.6,335.4 L543,335.4 L545.4,335.4 L547.8,335.4 L550.2,335.4 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(0,100,0)" stroke-width="1"><path d="M70.2,332.3 L72.6,332.2 L75,332.1 L77.4,332 L79.8,331.9 L82.2,331.8 L84.6,331.7 L87,331.6 L89.4,331.5 L91.8,331.3 L94.2,331.2 L96.6,331.1 L99,331 L101.4,330.8 L103.8,330.7 L106.2,330.5 L108.6,330.4 L111,330.2 L113.4,330.1 L115.8,329.9 L118.2,329.7 L120.6,329.6 L123,329.4 L125.4,329.2 L127.8,329 L130.2,328.8 L132.6,328.6 L135,328.4 L137.4,328.2 L139.8,328 L142.2,327.8 L144.6,327.5 L147,327.3 L149.4,327.1 L151.8,326.8 L154.2,326.5 L156.6,326.3 L159,326 L161.4,325.7 L163.8,325.4 L166.2,325.1 L168.6,324.8 L171,324.5 L173.4,324.1 L175.8,323.8 L178.2,323.4 L180.6,323.1 L183,322.7 L185.4,322.3 L187.8,321.9 L190.2,321.5 L192.6,321.1 L195,320.7 L197.4,320.2 L199.8,319.8 L202.2,319.3 L204.6,318.8 L207,318.3 L209.4,317.8 L211.8,317.2 L214.2,316.7 L216.6,316.1 L219,315.5 L221.4,314.9 L223.8,314.3 L226.2,313.6 L228.6,313 L231,312.3 L233.4,311.6 L235.8,310.9 L238.2,310.1 L240.6,309.4 L243,308.6 L245.4,307.8 L247.8,306.9 L250.2,306.1 L252.6,305.2 L255,304.2 L257.4,303.3 L259.8,302.3 L262.2,301.3 L264.6,300.3 L267,299.2 L269.4,298.1 L271.8,297 L274.2,295.8 L276.6,294.6 L279,293.4 L281.4,292.1 L283.8,290.8 L286.2,289.4 L288.6,288 L291,286.6 L293.4,285.1 L295.8,283.6 L298.2,282 L300.6,280.4 L303,278.7 L305.4,277 L307.8,275.2 L310.2,273.4 L312.6,275 L315,276.8 L317.4,278.5 L319.8,280.2 L322.2,281.8 L324.6,283.4 L327,284.9 L329.4,286.4 L331.8,287.9 L334.2,289.3 L336.6,290.6 L339,291.9 L341.4,293.2 L343.8,294.5 L346.2,295.7 L348.6,296.8 L351,298 L353.4,299.1 L355.8,300.2 L358.2,301.2 L360.6,302.2 L363,303.2 L365.4,304.1 L367.8,305.1 L370.2,305.9 L372.6,306.8 L375,307.7 L377.4,308.5 L379.8,309.3 L382.2,310 L384.6,310.8 L387,311.5 L389.4,312.2 L391.8,312.9 L394.2,313.6 L396.6,314.2 L399,314.8 L401.4,315.4 L403.8,316 L406.2,316.6 L408.6,317.2 L411,317.7 L413.4,318.2 L415.8,318.7 L418.2,319.2 L420.6,319.7 L423,320.2 L425.4,320.6 L427.8,321 L430.2,321.5 L432.6,321.9 L435,322.3 L437.4,322.7 L439.8,323 L442.2,323.4 L444.6,323.8 L447,324.1 L449.4,324.4 L451.8,324.8 L454.2,325.1 L456.6,325.4 L459,325.7 L461.4,326 L463.8,326.2 L466.2,326.5 L468.6,326.8 L471,327 L473.4,327.3 L475.8,327.5 L478.2,327.7 L480.6,328 L483,328.2 L485.4,328.4 L487.8,328.6 L490.2,328.8 L492.6,329 L495,329.2 L497.4,329.4 L499.8,329.6 L502.2,329.7 L504.6,329.9 L507,330.1 L509.4,330.2 L511.8,330.4 L514.2,330.5 L516.6,330.7 L519,330.8 L521.4,330.9 L523.8,331.1 L526.2,331.2 L528.6,331.3 L531,331.4 L533.4,331.6 L535.8,331.7 L538.2,331.8 L540.6,331.9 L543,332 L545.4,332.1 L547.8,332.2 L550.2,332.3 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(255,140,0)" stroke-width="1"><path d="M70.2,334.6 L72.6,334.5 L75,334.4 L77.4,334.4 L79.8,334.3 L82.2,334.3 L84.6,334.2 L87,334.1 L89.4,334 L91.8,334 L94.2,333.9 L96.6,333.8 L99,333.7 L101.4,333.6 L103.8,333.4 L106.2,333.3 L108.6,333.2 L111,333.1 L113.4,332.9 L115.8,332.8 L118.2,332.6 L120.6,332.4 L123,332.2 L125.4,332.1 L127.8,331.8 L130.2,331.6 L132.6,331.4 L135,331.1 L137.4,330.9 L139.8,330.6 L142.2,330.3 L144.6,330 L147,329.7 L149.4,329.3 L151.8,328.9 L154.2,328.5 L156.6,328.1 L159,327.7 L161.4,327.2 L163.8,326.7 L166.2,326.1 L168.6,325.6 L171,325 L173.4,324.3 L175.8,323.6 L178.2,322.9 L180.6,322.1 L183,321.3 L185.4,320.4 L187.8,319.5 L190.2,318.5 L192.6,317.5 L195,316.4 L197.4,315.2 L199.8,314 L202.2,312.7 L204.6,311.3 L207,309.8 L209.4,308.2 L211.8,306.5 L214.2,304.7 L216.6,302.8 L219,300.8 L221.4,298.7 L223.8,296.4 L226.2,294 L228.6,291.5 L231,288.7 L233.4,285.9 L235.8,282.8 L238.2,279.6 L240.6,276.1 L243,272.5 L245.4,268.6 L247.8,264.5 L250.2,260.1 L252.6,255.4 L255,250.5 L257.4,245.2 L259.8,239.7 L262.2,233.8 L264.6,227.5 L267,220.9 L269.4,213.8 L271.8,215.8 L274.2,222.7 L276.6,229.3 L279,235.5 L281.4,241.3 L283.8,246.7 L286.2,251.9 L288.6,256.7 L291,261.3 L293.4,265.6 L295.8,269.7 L298.2,273.5 L300.6,277.1 L303,280.5 L305.4,283.7 L307.8,286.7 L310.2,289.5 L312.6,292.2 L315,294.7 L317.4,297.1 L319.8,299.3 L322.2,301.4 L324.6,303.4 L327,305.2 L329.4,307 L331.8,308.6 L334.2,310.2 L336.6,311.7 L339,313 L341.4,314.3 L343.8,315.6 L346.2,316.7 L348.6,317.8 L351,318.8 L353.4,319.8 L355.8,320.7 L358.2,321.5 L360.6,322.4 L363,323.1 L365.4,323.8 L367.8,324.5 L370.2,325.1 L372.6,325.7 L375,326.3 L377.4,326.8 L379.8,327.3 L382.2,327.8 L384.6,328.2 L387,328.6 L389.4,329 L391.8,329.4 L394.2,329.8 L396.6,330.1 L399,330.4 L401.4,330.7 L403.8,331 L406.2,331.2 L408.6,331.5 L411,331.7 L413.4,331.9 L415.8,332.1 L418.2,332.3 L420.6,332.5 L423,332.6 L425.4,332.8 L427.8,333 L430.2,333.1 L432.6,333.2 L435,333.4 L437.4,333.5 L439.8,333.6 L442.2,333.7 L444.6,333.8 L447,333.9 L449.4,334 L451.8,334.1 L454.2,334.1 L456.6,334.2 L459,334.3 L461.4,334.3 L463.8,334.4 L466.2,334.5 L468.6,334.5 L471,334.6 L473.4,334.6 L475.8,334.7 L478.2,334.7 L480.6,334.7 L483,334.8 L485.4,334.8 L487.8,334.9 L490.2,334.9 L492.6,334.9 L495,334.9 L497.4,335 L499.8,335 L502.2,335 L504.6,335 L507,335.1 L509.4,335.1 L511.8,335.1 L514.2,335.1 L516.6,335.1 L519,335.1 L521.4,335.2 L523.8,335.2 L526.2,335.2 L528.6,335.2 L531,335.2 L533.4,335.2 L535.8,335.2 L538.2,335.2 L540.6,335.3 L543,335.3 L545.4,335.3 L547.8,335.3 L550.2,335.3 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(127,255,0)" stroke-width="1"><path d="M70.2,335.3 L72.6,335.3 L75,335.3 L77.4,335.3 L79.8,335.3 L82.2,335.2 L84.6,335.2 L87,335.2 L89.4,335.2 L91.8,335.2 L94.2,335.2 L96.6,335.2 L99,335.2 L101.4,335.2 L103.8,335.1 L106.2,335.1 L108.6,335.1 L111,335.1 L113.4,335.1 L115.8,335 L118.2,335 L120.6,335 L123,335 L125.4,334.9 L127.8,334.9 L130.2,334.9 L132.6,334.9 L135,334.8 L137.4,334.8 L139.8,334.8 L142.2,334.7 L144.6,334.7 L147,334.6 L149.4,334.6 L151.8,334.5 L154.2,334.5 L156.6,334.4 L159,334.4 L161.4,334.3 L163.8,334.2 L166.2,334.1 L168.6,334.1 L171,334 L173.4,333.9 L175.8,333.8 L178.2,333.7 L180.6,333.6 L183,333.5 L185.4,333.4 L187.8,333.3 L190.2,333.1 L192.6,333 L195,332.8 L197.4,332.7 L199.8,332.5 L202.2,332.3 L204.6,332.1 L207,331.9 L209.4,331.7 L211.8,331.5 L214.2,331.2 L216.6,331 L219,330.7 L221.4,330.4 L223.8,330.1 L226.2,329.8 L228.6,329.5 L231,329.1 L233.4,328.7 L235.8,328.3 L238.2,327.8 L240.6,327.4 L243,326.9 L245.4,326.4 L247.8,325.8 L250.2,325.2 L252.6,324.6 L255,323.9 L257.4,323.2 L259.8,322.4 L262.2,321.6 L264.6,320.8 L267,319.9 L269.4,318.9 L271.8,317.9 L274.2,316.8 L276.6,315.7 L279,314.5 L281.4,313.2 L283.8,311.8 L286.2,310.4 L288.6,308.8 L291,307.2 L293.4,305.4 L295.8,303.6 L298.2,301.6 L300.6,299.6 L303,297.3 L305.4,295 L307.8,292.5 L310.2,289.9 L312.6,287 L315,284.1 L317.4,280.9 L319.8,277.5 L322.2,274 L324.6,270.2 L327,266.1 L329.4,261.9 L331.8,257.3 L334.2,252.5 L336.6,247.4 L339,242 L341.4,236.2 L343.8,230.1 L346.2,223.6 L348.6,216.7 L351,212.9 L353.4,220 L355.8,226.7 L358.2,233 L360.6,239 L363,244.6 L365.4,249.9 L367.8,254.8 L370.2,259.5 L372.6,263.9 L375,268.1 L377.4,272 L379.8,275.7 L382.2,279.1 L384.6,282.4 L387,285.5 L389.4,288.4 L391.8,291.1 L394.2,293.7 L396.6,296.1 L399,298.4 L401.4,300.6 L403.8,302.6 L406.2,304.5 L408.6,306.3 L411,308 L413.4,309.6 L415.8,311.1 L418.2,312.5 L420.6,313.8 L423,315.1 L425.4,316.3 L427.8,317.4 L430.2,318.4 L432.6,319.4 L435,320.3 L437.4,321.2 L439.8,322 L442.2,322.8 L444.6,323.5 L447,324.2 L449.4,324.9 L451.8,325.5 L454.2,326.1 L456.6,326.6 L459,327.1 L461.4,327.6 L463.8,328.1 L466.2,328.5 L468.6,328.9 L471,329.3 L473.4,329.6 L475.8,330 L478.2,330.3 L480.6,330.6 L483,330.9 L485.4,331.1 L487.8,331.4 L490.2,331.6 L492.6,331.8 L495,332 L497.4,332.2 L499.8,332.4 L502.2,332.6 L504.6,332.7 L507,332.9 L509.4,333 L511.8,333.2 L514.2,333.3 L516.6,333.4 L519,333.5 L521.4,333.7 L523.8,333.8 L526.2,333.9 L528.6,333.9 L531,334 L533.4,334.1 L535.8,334.2 L538.2,334.3 L540.6,334.3 L543,334.4 L545.4,334.4 L547.8,334.5 L550.2,334.5 " fill="none"/></g>
|
||||
</g>
|
||||
<g id="plotPoints" clip-path="url(#plot_window)"></g>
|
||||
<g id="legendBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="1"><rect x="564.2" y="62" width="173.8" height="165"/><rect x="564.2" y="62" width="173.8" height="165"/></g>
|
||||
<g id="legendPoints"><g stroke="rgb(0,0,139)" stroke-width="1"><line x1="579.2" y1="92" x2="594.2" y2="92"/></g>
|
||||
<g stroke="rgb(139,0,0)" stroke-width="1"><line x1="579.2" y1="122" x2="594.2" y2="122"/></g>
|
||||
<g stroke="rgb(0,100,0)" stroke-width="1"><line x1="579.2" y1="152" x2="594.2" y2="152"/></g>
|
||||
<g stroke="rgb(255,140,0)" stroke-width="1"><line x1="579.2" y1="182" x2="594.2" y2="182"/></g>
|
||||
<g stroke="rgb(127,255,0)" stroke-width="1"><line x1="579.2" y1="212" x2="594.2" y2="212"/></g>
|
||||
</g>
|
||||
<g id="legendText">
|
||||
<text x="601.7" y="92" font-size="15" font-family="Verdana">μ = 0, σ = 1</text>
|
||||
<text x="601.7" y="122" font-size="15" font-family="Verdana">μ = 0, σ = 0.5</text>
|
||||
<text x="601.7" y="152" font-size="15" font-family="Verdana">μ = 0, σ = 2</text>
|
||||
<text x="601.7" y="182" font-size="15" font-family="Verdana">μ = -1, σ = 1</text>
|
||||
<text x="601.7" y="212" font-size="15" font-family="Verdana">μ = 1, σ = 1</text></g>
|
||||
<g id="title">
|
||||
<text x="375" y="40" text-anchor="middle" font-size="20" font-family="Verdana">Laplace Distribution PDF</text></g>
|
||||
<g id="plotXValues"></g>
|
||||
<g id="plotYValues"></g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 19 KiB |
BIN
doc/sf_and_dist/graphs/laplace_pdf_mu.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
537
doc/sf_and_dist/graphs/laplace_pdf_mu.svg
Normal file
@@ -0,0 +1,537 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="750" height="400" viewBox="0 0 750 400"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<desc>Produced by GNUPLOT 4.2 patchlevel 4 </desc>
|
||||
|
||||
<defs>
|
||||
|
||||
|
||||
<circle id='gpDot' r='1'/>
|
||||
<path id='gpPt0' style='stroke-width:0.222' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' style='stroke-width:0.222' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' style='stroke-width:0.222' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' style='stroke-width:0.222' x='-1' y='-1' width='2' height='2'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt4' style='fill:currentColor; stroke:none'/>
|
||||
<circle id='gpPt5' style='stroke-width:0.222' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' style='fill:currentColor; stroke:none'/>
|
||||
<path id='gpPt7' style='stroke-width:0.222' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' style='fill:currentColor; stroke:none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' style='fill:currentColor; stroke:none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' style='fill:currentColor; stroke:none'/>
|
||||
</defs>
|
||||
<g style="fill:none; color:white; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
</g>
|
||||
<g style="fill:none; color:black; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<path d='M93.4,342.4 L102.4,342.4 M732.7,342.4 L723.7,342.4 '></path>
|
||||
<g transform="translate(85.1,346.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,283.2 L102.4,283.2 M732.7,283.2 L723.7,283.2 '></path>
|
||||
<g transform="translate(85.1,287.7)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0.1</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,223.9 L102.4,223.9 M732.7,223.9 L723.7,223.9 '></path>
|
||||
<g transform="translate(85.1,228.4)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0.2</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,164.7 L102.4,164.7 M732.7,164.7 L723.7,164.7 '></path>
|
||||
<g transform="translate(85.1,169.2)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0.3</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,105.5 L102.4,105.5 M732.7,105.5 L723.7,105.5 '></path>
|
||||
<g transform="translate(85.1,110.0)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0.4</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,46.2 L102.4,46.2 M732.7,46.2 L723.7,46.2 '></path>
|
||||
<g transform="translate(85.1,50.7)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0.5</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,342.4 L93.4,333.4 M93.4,16.6 L93.4,25.6 '></path>
|
||||
<g transform="translate(93.4,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>-10</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M157.3,342.4 L157.3,333.4 M157.3,16.6 L157.3,25.6 '></path>
|
||||
<g transform="translate(157.3,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>-8</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M221.3,342.4 L221.3,333.4 M221.3,16.6 L221.3,25.6 '></path>
|
||||
<g transform="translate(221.3,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>-6</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M285.2,342.4 L285.2,333.4 M285.2,16.6 L285.2,25.6 '></path>
|
||||
<g transform="translate(285.2,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>-4</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M349.1,342.4 L349.1,333.4 M349.1,16.6 L349.1,25.6 '></path>
|
||||
<g transform="translate(349.1,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>-2</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M413.0,342.4 L413.0,333.4 M413.0,16.6 L413.0,25.6 '></path>
|
||||
<g transform="translate(413.0,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 0</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M477.0,342.4 L477.0,333.4 M477.0,16.6 L477.0,25.6 '></path>
|
||||
<g transform="translate(477.0,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 2</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M540.9,342.4 L540.9,333.4 M540.9,16.6 L540.9,25.6 '></path>
|
||||
<g transform="translate(540.9,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 4</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M604.8,342.4 L604.8,333.4 M604.8,16.6 L604.8,25.6 '></path>
|
||||
<g transform="translate(604.8,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 6</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M668.8,342.4 L668.8,333.4 M668.8,16.6 L668.8,25.6 '></path>
|
||||
<g transform="translate(668.8,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 8</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M732.7,342.4 L732.7,333.4 M732.7,16.6 L732.7,25.6 '></path>
|
||||
<g transform="translate(732.7,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 10</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,16.6 L93.4,342.4 L732.7,342.4 L732.7,16.6 L93.4,16.6 Z '></path>
|
||||
<g transform="translate(39.1,179.5) rotate(-90)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>Probability</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<g transform="translate(413.0,391.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>Random Variable</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
<g style="fill:none; color:red; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
</g>
|
||||
<g style="fill:none; color:black; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<g transform="translate(665.6,39.1)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan>μ = -6, σ = 1</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
<g style="fill:none; color:red; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<path d='M673.9,34.6 L716.1,34.6 M93.4,337.0 L94.0,336.9 L94.7,336.8 L95.3,336.6 L96.0,336.5 L96.6,336.4
|
||||
L97.2,336.3 L97.9,336.2 L98.5,336.0 L99.2,335.9 L99.8,335.8 L100.4,335.6 L101.1,335.5 L101.7,335.4
|
||||
L102.4,335.2 L103.0,335.1 L103.6,334.9 L104.3,334.8 L104.9,334.6 L105.5,334.5 L106.2,334.3 L106.8,334.1
|
||||
L107.5,334.0 L108.1,333.8 L108.7,333.6 L109.4,333.5 L110.0,333.3 L110.7,333.1 L111.3,332.9 L111.9,332.7
|
||||
L112.6,332.5 L113.2,332.3 L113.9,332.1 L114.5,331.9 L115.1,331.7 L115.8,331.5 L116.4,331.3 L117.1,331.0
|
||||
L117.7,330.8 L118.3,330.6 L119.0,330.3 L119.6,330.1 L120.3,329.8 L120.9,329.6 L121.5,329.3 L122.2,329.1
|
||||
L122.8,328.8 L123.4,328.5 L124.1,328.2 L124.7,327.9 L125.4,327.7 L126.0,327.4 L126.6,327.1 L127.3,326.7
|
||||
L127.9,326.4 L128.6,326.1 L129.2,325.8 L129.8,325.4 L130.5,325.1 L131.1,324.7 L131.8,324.4 L132.4,324.0
|
||||
L133.0,323.7 L133.7,323.3 L134.3,322.9 L135.0,322.5 L135.6,322.1 L136.2,321.7 L136.9,321.3 L137.5,320.8
|
||||
L138.2,320.4 L138.8,320.0 L139.4,319.5 L140.1,319.0 L140.7,318.6 L141.3,318.1 L142.0,317.6 L142.6,317.1
|
||||
L143.3,316.6 L143.9,316.1 L144.5,315.5 L145.2,315.0 L145.8,314.4 L146.5,313.9 L147.1,313.3 L147.7,312.7
|
||||
L148.4,312.1 L149.0,311.5 L149.7,310.9 L150.3,310.2 L150.9,309.6 L151.6,308.9 L152.2,308.2 L152.9,307.6
|
||||
L153.5,306.8 L154.1,306.1 L154.8,305.4 L155.4,304.7 L156.1,303.9 L156.7,303.1 L157.3,302.3 L158.0,301.5
|
||||
L158.6,300.7 L159.2,299.8 L159.9,299.0 L160.5,298.1 L161.2,297.2 L161.8,296.3 L162.4,295.4 L163.1,294.4
|
||||
L163.7,293.4 L164.4,292.5 L165.0,291.4 L165.6,290.4 L166.3,289.4 L166.9,288.3 L167.6,287.2 L168.2,286.1
|
||||
L168.8,284.9 L169.5,283.8 L170.1,282.6 L170.8,281.4 L171.4,280.2 L172.0,278.9 L172.7,277.6 L173.3,276.3
|
||||
L174.0,275.0 L174.6,273.6 L175.2,272.2 L175.9,270.8 L176.5,269.4 L177.1,267.9 L177.8,266.4 L178.4,264.8
|
||||
L179.1,263.3 L179.7,261.7 L180.3,260.1 L181.0,258.4 L181.6,256.7 L182.3,255.0 L182.9,253.2 L183.5,251.4
|
||||
L184.2,249.6 L184.8,247.7 L185.5,245.8 L186.1,243.8 L186.7,241.8 L187.4,239.8 L188.0,237.7 L188.7,235.6
|
||||
L189.3,233.4 L189.9,231.2 L190.6,229.0 L191.2,226.7 L191.9,224.4 L192.5,222.0 L193.1,219.5 L193.8,217.1
|
||||
L194.4,214.5 L195.0,212.0 L195.7,209.3 L196.3,206.6 L197.0,203.9 L197.6,201.1 L198.2,198.2 L198.9,195.3
|
||||
L199.5,192.3 L200.2,189.3 L200.8,186.2 L201.4,183.1 L202.1,179.9 L202.7,176.6 L203.4,173.2 L204.0,169.8
|
||||
L204.6,166.3 L205.3,162.8 L205.9,159.1 L206.6,155.4 L207.2,151.6 L207.8,147.8 L208.5,143.9 L209.1,139.9
|
||||
L209.8,135.8 L210.4,131.6 L211.0,127.3 L211.7,123.0 L212.3,118.6 L212.9,114.0 L213.6,109.4 L214.2,104.7
|
||||
L214.9,99.9 L215.5,95.0 L216.1,90.0 L216.8,84.9 L217.4,79.7 L218.1,74.4 L218.7,69.0 L219.3,63.5
|
||||
L220.0,57.8 L220.6,52.1 L221.3,46.2 L221.9,52.1 L222.5,57.8 L223.2,63.5 L223.8,69.0 L224.5,74.4
|
||||
L225.1,79.7 L225.7,84.9 L226.4,90.0 L227.0,95.0 L227.7,99.9 L228.3,104.7 L228.9,109.4 L229.6,114.0
|
||||
L230.2,118.6 L230.8,123.0 L231.5,127.3 L232.1,131.6 L232.8,135.8 L233.4,139.9 L234.0,143.9 L234.7,147.8
|
||||
L235.3,151.6 L236.0,155.4 L236.6,159.1 L237.2,162.8 L237.9,166.3 L238.5,169.8 L239.2,173.2 L239.8,176.6
|
||||
L240.4,179.9 L241.1,183.1 L241.7,186.2 L242.4,189.3 L243.0,192.3 L243.6,195.3 L244.3,198.2 L244.9,201.1
|
||||
L245.6,203.9 L246.2,206.6 L246.8,209.3 L247.5,212.0 L248.1,214.5 L248.7,217.1 L249.4,219.5 L250.0,222.0
|
||||
L250.7,224.4 L251.3,226.7 L251.9,229.0 L252.6,231.2 L253.2,233.4 L253.9,235.6 L254.5,237.7 L255.1,239.8
|
||||
L255.8,241.8 L256.4,243.8 L257.1,245.8 L257.7,247.7 L258.3,249.6 L259.0,251.4 L259.6,253.2 L260.3,255.0
|
||||
L260.9,256.7 L261.5,258.4 L262.2,260.1 L262.8,261.7 L263.5,263.3 L264.1,264.8 L264.7,266.4 L265.4,267.9
|
||||
L266.0,269.4 L266.7,270.8 L267.3,272.2 L267.9,273.6 L268.6,275.0 L269.2,276.3 L269.8,277.6 L270.5,278.9
|
||||
L271.1,280.2 L271.8,281.4 L272.4,282.6 L273.0,283.8 L273.7,284.9 L274.3,286.1 L275.0,287.2 L275.6,288.3
|
||||
L276.2,289.4 L276.9,290.4 L277.5,291.4 L278.2,292.5 L278.8,293.4 L279.4,294.4 L280.1,295.4 L280.7,296.3
|
||||
L281.4,297.2 L282.0,298.1 L282.6,299.0 L283.3,299.8 L283.9,300.7 L284.6,301.5 L285.2,302.3 L285.8,303.1
|
||||
L286.5,303.9 L287.1,304.7 L287.7,305.4 L288.4,306.1 L289.0,306.8 L289.7,307.6 L290.3,308.2 L290.9,308.9
|
||||
L291.6,309.6 L292.2,310.2 L292.9,310.9 L293.5,311.5 L294.1,312.1 L294.8,312.7 L295.4,313.3 L296.1,313.9
|
||||
L296.7,314.4 L297.3,315.0 L298.0,315.5 L298.6,316.1 L299.3,316.6 L299.9,317.1 L300.5,317.6 L301.2,318.1
|
||||
L301.8,318.6 L302.5,319.0 L303.1,319.5 L303.7,320.0 L304.4,320.4 L305.0,320.8 L305.6,321.3 L306.3,321.7
|
||||
L306.9,322.1 L307.6,322.5 L308.2,322.9 L308.8,323.3 L309.5,323.7 L310.1,324.0 L310.8,324.4 L311.4,324.7
|
||||
L312.0,325.1 L312.7,325.4 L313.3,325.8 L314.0,326.1 L314.6,326.4 L315.2,326.7 L315.9,327.1 L316.5,327.4
|
||||
L317.2,327.7 L317.8,327.9 L318.4,328.2 L319.1,328.5 L319.7,328.8 L320.4,329.1 L321.0,329.3 L321.6,329.6
|
||||
L322.3,329.8 L322.9,330.1 L323.5,330.3 L324.2,330.6 L324.8,330.8 L325.5,331.0 L326.1,331.3 L326.7,331.5
|
||||
L327.4,331.7 L328.0,331.9 L328.7,332.1 L329.3,332.3 L329.9,332.5 L330.6,332.7 L331.2,332.9 L331.9,333.1
|
||||
L332.5,333.3 L333.1,333.5 L333.8,333.6 L334.4,333.8 L335.1,334.0 L335.7,334.1 L336.3,334.3 L337.0,334.5
|
||||
L337.6,334.6 L338.3,334.8 L338.9,334.9 L339.5,335.1 L340.2,335.2 L340.8,335.4 L341.4,335.5 L342.1,335.6
|
||||
L342.7,335.8 L343.4,335.9 L344.0,336.0 L344.6,336.2 L345.3,336.3 L345.9,336.4 L346.6,336.5 L347.2,336.6
|
||||
L347.8,336.8 L348.5,336.9 L349.1,337.0 L349.8,337.1 L350.4,337.2 L351.0,337.3 L351.7,337.4 L352.3,337.5
|
||||
L353.0,337.6 L353.6,337.7 L354.2,337.8 L354.9,337.9 L355.5,338.0 L356.2,338.0 L356.8,338.1 L357.4,338.2
|
||||
L358.1,338.3 L358.7,338.4 L359.3,338.5 L360.0,338.5 L360.6,338.6 L361.3,338.7 L361.9,338.8 L362.5,338.8
|
||||
L363.2,338.9 L363.8,339.0 L364.5,339.0 L365.1,339.1 L365.7,339.2 L366.4,339.2 L367.0,339.3 L367.7,339.4
|
||||
L368.3,339.4 L368.9,339.5 L369.6,339.5 L370.2,339.6 L370.9,339.7 L371.5,339.7 L372.1,339.8 L372.8,339.8
|
||||
L373.4,339.9 L374.1,339.9 L374.7,340.0 L375.3,340.0 L376.0,340.1 L376.6,340.1 L377.2,340.1 L377.9,340.2
|
||||
L378.5,340.2 L379.2,340.3 L379.8,340.3 L380.4,340.4 L381.1,340.4 L381.7,340.4 L382.4,340.5 L383.0,340.5
|
||||
L383.6,340.6 L384.3,340.6 L384.9,340.6 L385.6,340.7 L386.2,340.7 L386.8,340.7 L387.5,340.8 L388.1,340.8
|
||||
L388.8,340.8 L389.4,340.9 L390.0,340.9 L390.7,340.9 L391.3,341.0 L392.0,341.0 L392.6,341.0 L393.2,341.0
|
||||
L393.9,341.1 L394.5,341.1 L395.1,341.1 L395.8,341.1 L396.4,341.2 L397.1,341.2 L397.7,341.2 L398.3,341.2
|
||||
L399.0,341.3 L399.6,341.3 L400.3,341.3 L400.9,341.3 L401.5,341.3 L402.2,341.4 L402.8,341.4 L403.5,341.4
|
||||
L404.1,341.4 L404.7,341.4 L405.4,341.5 L406.0,341.5 L406.7,341.5 L407.3,341.5 L407.9,341.5 L408.6,341.6
|
||||
L409.2,341.6 L409.9,341.6 L410.5,341.6 L411.1,341.6 L411.8,341.6 L412.4,341.7 L413.0,341.7 L413.7,341.7
|
||||
L414.3,341.7 L415.0,341.7 L415.6,341.7 L416.2,341.7 L416.9,341.7 L417.5,341.8 L418.2,341.8 L418.8,341.8
|
||||
L419.4,341.8 L420.1,341.8 L420.7,341.8 L421.4,341.8 L422.0,341.8 L422.6,341.9 L423.3,341.9 L423.9,341.9
|
||||
L424.6,341.9 L425.2,341.9 L425.8,341.9 L426.5,341.9 L427.1,341.9 L427.8,341.9 L428.4,341.9 L429.0,342.0
|
||||
L429.7,342.0 L430.3,342.0 L431.0,342.0 L431.6,342.0 L432.2,342.0 L432.9,342.0 L433.5,342.0 L434.1,342.0
|
||||
L434.8,342.0 L435.4,342.0 L436.1,342.0 L436.7,342.0 L437.3,342.1 L438.0,342.1 L438.6,342.1 L439.3,342.1
|
||||
L439.9,342.1 L440.5,342.1 L441.2,342.1 L441.8,342.1 L442.5,342.1 L443.1,342.1 L443.7,342.1 L444.4,342.1
|
||||
L445.0,342.1 L445.7,342.1 L446.3,342.1 L446.9,342.1 L447.6,342.2 L448.2,342.2 L448.9,342.2 L449.5,342.2
|
||||
L450.1,342.2 L450.8,342.2 L451.4,342.2 L452.0,342.2 L452.7,342.2 L453.3,342.2 L454.0,342.2 L454.6,342.2
|
||||
L455.2,342.2 L455.9,342.2 L456.5,342.2 L457.2,342.2 L457.8,342.2 L458.4,342.2 L459.1,342.2 L459.7,342.2
|
||||
L460.4,342.2 L461.0,342.2 L461.6,342.2 L462.3,342.2 L462.9,342.2 L463.6,342.2 L464.2,342.3 L464.8,342.3
|
||||
L465.5,342.3 L466.1,342.3 L466.8,342.3 L467.4,342.3 L468.0,342.3 L468.7,342.3 L469.3,342.3 L469.9,342.3
|
||||
L470.6,342.3 L471.2,342.3 L471.9,342.3 L472.5,342.3 L473.1,342.3 L473.8,342.3 L474.4,342.3 L475.1,342.3
|
||||
L475.7,342.3 L476.3,342.3 L477.0,342.3 L477.6,342.3 L478.3,342.3 L478.9,342.3 L479.5,342.3 L480.2,342.3
|
||||
L480.8,342.3 L481.5,342.3 L482.1,342.3 L482.7,342.3 L483.4,342.3 L484.0,342.3 L484.7,342.3 L485.3,342.3
|
||||
L485.9,342.3 L486.6,342.3 L487.2,342.3 L487.8,342.3 L488.5,342.3 L489.1,342.3 L489.8,342.3 L490.4,342.3
|
||||
L491.0,342.3 L491.7,342.3 L492.3,342.3 L493.0,342.3 L493.6,342.3 L494.2,342.3 L494.9,342.3 L495.5,342.3
|
||||
L496.2,342.3 L496.8,342.3 L497.4,342.3 L498.1,342.3 L498.7,342.3 L499.4,342.4 L500.0,342.4 L500.6,342.4
|
||||
L501.3,342.4 L501.9,342.4 L502.6,342.4 L503.2,342.4 L503.8,342.4 L504.5,342.4 L505.1,342.4 L505.7,342.4
|
||||
L506.4,342.4 L507.0,342.4 L507.7,342.4 L508.3,342.4 L508.9,342.4 L509.6,342.4 L510.2,342.4 L510.9,342.4
|
||||
L511.5,342.4 L512.1,342.4 L512.8,342.4 L513.4,342.4 L514.1,342.4 L514.7,342.4 L515.3,342.4 L516.0,342.4
|
||||
L516.6,342.4 L517.3,342.4 L517.9,342.4 L518.5,342.4 L519.2,342.4 L519.8,342.4 L520.5,342.4 L521.1,342.4
|
||||
L521.7,342.4 L522.4,342.4 L523.0,342.4 L523.6,342.4 L524.3,342.4 L524.9,342.4 L525.6,342.4 L526.2,342.4
|
||||
L526.8,342.4 L527.5,342.4 L528.1,342.4 L528.8,342.4 L529.4,342.4 L530.0,342.4 L530.7,342.4 L531.3,342.4
|
||||
L532.0,342.4 L532.6,342.4 L533.2,342.4 L533.9,342.4 L534.5,342.4 L535.2,342.4 L535.8,342.4 L536.4,342.4
|
||||
L537.1,342.4 L537.7,342.4 L538.4,342.4 L539.0,342.4 L539.6,342.4 L540.3,342.4 L540.9,342.4 L541.5,342.4
|
||||
L542.2,342.4 L542.8,342.4 L543.5,342.4 L544.1,342.4 L544.7,342.4 L545.4,342.4 L546.0,342.4 L546.7,342.4
|
||||
L547.3,342.4 L547.9,342.4 L548.6,342.4 L549.2,342.4 L549.9,342.4 L550.5,342.4 L551.1,342.4 L551.8,342.4
|
||||
L552.4,342.4 L553.1,342.4 L553.7,342.4 L554.3,342.4 L555.0,342.4 L555.6,342.4 L556.3,342.4 L556.9,342.4
|
||||
L557.5,342.4 L558.2,342.4 L558.8,342.4 L559.4,342.4 L560.1,342.4 L560.7,342.4 L561.4,342.4 L562.0,342.4
|
||||
L562.6,342.4 L563.3,342.4 L563.9,342.4 L564.6,342.4 L565.2,342.4 L565.8,342.4 L566.5,342.4 L567.1,342.4
|
||||
L567.8,342.4 L568.4,342.4 L569.0,342.4 L569.7,342.4 L570.3,342.4 L571.0,342.4 L571.6,342.4 L572.2,342.4
|
||||
L572.9,342.4 L573.5,342.4 L574.2,342.4 L574.8,342.4 L575.4,342.4 L576.1,342.4 L576.7,342.4 L577.4,342.4
|
||||
L578.0,342.4 L578.6,342.4 L579.3,342.4 L579.9,342.4 L580.5,342.4 L581.2,342.4 L581.8,342.4 L582.5,342.4
|
||||
L583.1,342.4 L583.7,342.4 L584.4,342.4 L585.0,342.4 L585.7,342.4 L586.3,342.4 L586.9,342.4 L587.6,342.4
|
||||
L588.2,342.4 L588.9,342.4 L589.5,342.4 L590.1,342.4 L590.8,342.4 L591.4,342.4 L592.1,342.4 L592.7,342.4
|
||||
L593.3,342.4 L594.0,342.4 L594.6,342.4 L595.3,342.4 L595.9,342.4 L596.5,342.4 L597.2,342.4 L597.8,342.4
|
||||
L598.4,342.4 L599.1,342.4 L599.7,342.4 L600.4,342.4 L601.0,342.4 L601.6,342.4 L602.3,342.4 L602.9,342.4
|
||||
L603.6,342.4 L604.2,342.4 L604.8,342.4 L605.5,342.4 L606.1,342.4 L606.8,342.4 L607.4,342.4 L608.0,342.4
|
||||
L608.7,342.4 L609.3,342.4 L610.0,342.4 L610.6,342.4 L611.2,342.4 L611.9,342.4 L612.5,342.4 L613.2,342.4
|
||||
L613.8,342.4 L614.4,342.4 L615.1,342.4 L615.7,342.4 L616.3,342.4 L617.0,342.4 L617.6,342.4 L618.3,342.4
|
||||
L618.9,342.4 L619.5,342.4 L620.2,342.4 L620.8,342.4 L621.5,342.4 L622.1,342.4 L622.7,342.4 L623.4,342.4
|
||||
L624.0,342.4 L624.7,342.4 L625.3,342.4 L625.9,342.4 L626.6,342.4 L627.2,342.4 L627.9,342.4 L628.5,342.4
|
||||
L629.1,342.4 L629.8,342.4 L630.4,342.4 L631.1,342.4 L631.7,342.4 L632.3,342.4 L633.0,342.4 L633.6,342.4
|
||||
L634.2,342.4 L634.9,342.4 L635.5,342.4 L636.2,342.4 L636.8,342.4 L637.4,342.4 L638.1,342.4 L638.7,342.4
|
||||
L639.4,342.4 L640.0,342.4 L640.6,342.4 L641.3,342.4 L641.9,342.4 L642.6,342.4 L643.2,342.4 L643.8,342.4
|
||||
L644.5,342.4 L645.1,342.4 L645.8,342.4 L646.4,342.4 L647.0,342.4 L647.7,342.4 L648.3,342.4 L649.0,342.4
|
||||
L649.6,342.4 L650.2,342.4 L650.9,342.4 L651.5,342.4 L652.1,342.4 L652.8,342.4 L653.4,342.4 L654.1,342.4
|
||||
L654.7,342.4 L655.3,342.4 L656.0,342.4 L656.6,342.4 L657.3,342.4 L657.9,342.4 L658.5,342.4 L659.2,342.4
|
||||
L659.8,342.4 L660.5,342.4 L661.1,342.4 L661.7,342.4 L662.4,342.4 L663.0,342.4 L663.7,342.4 L664.3,342.4
|
||||
L664.9,342.4 L665.6,342.4 L666.2,342.4 L666.9,342.4 L667.5,342.4 L668.1,342.4 L668.8,342.4 L669.4,342.4
|
||||
L670.0,342.4 L670.7,342.4 L671.3,342.4 L672.0,342.4 L672.6,342.4 L673.2,342.4 L673.9,342.4 L674.5,342.4
|
||||
L675.2,342.4 L675.8,342.4 L676.4,342.4 L677.1,342.4 L677.7,342.4 L678.4,342.4 L679.0,342.4 L679.6,342.4
|
||||
L680.3,342.4 L680.9,342.4 L681.6,342.4 L682.2,342.4 L682.8,342.4 L683.5,342.4 L684.1,342.4 L684.8,342.4
|
||||
L685.4,342.4 L686.0,342.4 L686.7,342.4 L687.3,342.4 L687.9,342.4 L688.6,342.4 L689.2,342.4 L689.9,342.4
|
||||
L690.5,342.4 L691.1,342.4 L691.8,342.4 L692.4,342.4 L693.1,342.4 L693.7,342.4 L694.3,342.4 L695.0,342.4
|
||||
L695.6,342.4 L696.3,342.4 L696.9,342.4 L697.5,342.4 L698.2,342.4 L698.8,342.4 L699.5,342.4 L700.1,342.4
|
||||
L700.7,342.4 L701.4,342.4 L702.0,342.4 L702.7,342.4 L703.3,342.4 L703.9,342.4 L704.6,342.4 L705.2,342.4
|
||||
L705.8,342.4 L706.5,342.4 L707.1,342.4 L707.8,342.4 L708.4,342.4 L709.0,342.4 L709.7,342.4 L710.3,342.4
|
||||
L711.0,342.4 L711.6,342.4 L712.2,342.4 L712.9,342.4 L713.5,342.4 L714.2,342.4 L714.8,342.4 L715.4,342.4
|
||||
L716.1,342.4 L716.7,342.4 L717.4,342.4 L718.0,342.4 L718.6,342.4 L719.3,342.4 L719.9,342.4 L720.6,342.4
|
||||
L721.2,342.4 L721.8,342.4 L722.5,342.4 L723.1,342.4 L723.7,342.4 L724.4,342.4 L725.0,342.4 L725.7,342.4
|
||||
L726.3,342.4 L726.9,342.4 L727.6,342.4 L728.2,342.4 L728.9,342.4 L729.5,342.4 L730.1,342.4 L730.8,342.4
|
||||
L731.4,342.4 L732.1,342.4 L732.7,342.4 '></path>
|
||||
</g>
|
||||
<g style="fill:none; color:green; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
</g>
|
||||
<g style="fill:none; color:black; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<g transform="translate(665.6,57.1)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan>μ = 0, σ = 2</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
<g style="fill:none; color:green; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<path d='M673.9,52.6 L716.1,52.6 M93.4,342.4 L94.0,342.4 L94.7,342.4 L95.3,342.4 L96.0,342.4 L96.6,342.4
|
||||
L97.2,342.4 L97.9,342.4 L98.5,342.4 L99.2,342.4 L99.8,342.4 L100.4,342.4 L101.1,342.4 L101.7,342.4
|
||||
L102.4,342.4 L103.0,342.4 L103.6,342.4 L104.3,342.4 L104.9,342.4 L105.5,342.4 L106.2,342.4 L106.8,342.4
|
||||
L107.5,342.4 L108.1,342.4 L108.7,342.4 L109.4,342.4 L110.0,342.4 L110.7,342.4 L111.3,342.4 L111.9,342.4
|
||||
L112.6,342.4 L113.2,342.4 L113.9,342.4 L114.5,342.4 L115.1,342.4 L115.8,342.4 L116.4,342.4 L117.1,342.4
|
||||
L117.7,342.4 L118.3,342.4 L119.0,342.4 L119.6,342.4 L120.3,342.4 L120.9,342.4 L121.5,342.4 L122.2,342.4
|
||||
L122.8,342.4 L123.4,342.4 L124.1,342.4 L124.7,342.4 L125.4,342.4 L126.0,342.4 L126.6,342.4 L127.3,342.4
|
||||
L127.9,342.4 L128.6,342.4 L129.2,342.4 L129.8,342.4 L130.5,342.4 L131.1,342.4 L131.8,342.4 L132.4,342.4
|
||||
L133.0,342.4 L133.7,342.4 L134.3,342.4 L135.0,342.4 L135.6,342.3 L136.2,342.3 L136.9,342.3 L137.5,342.3
|
||||
L138.2,342.3 L138.8,342.3 L139.4,342.3 L140.1,342.3 L140.7,342.3 L141.3,342.3 L142.0,342.3 L142.6,342.3
|
||||
L143.3,342.3 L143.9,342.3 L144.5,342.3 L145.2,342.3 L145.8,342.3 L146.5,342.3 L147.1,342.3 L147.7,342.3
|
||||
L148.4,342.3 L149.0,342.3 L149.7,342.3 L150.3,342.3 L150.9,342.3 L151.6,342.3 L152.2,342.3 L152.9,342.3
|
||||
L153.5,342.3 L154.1,342.3 L154.8,342.3 L155.4,342.3 L156.1,342.3 L156.7,342.3 L157.3,342.3 L158.0,342.3
|
||||
L158.6,342.3 L159.2,342.3 L159.9,342.3 L160.5,342.3 L161.2,342.3 L161.8,342.3 L162.4,342.3 L163.1,342.3
|
||||
L163.7,342.3 L164.4,342.3 L165.0,342.3 L165.6,342.3 L166.3,342.3 L166.9,342.3 L167.6,342.3 L168.2,342.3
|
||||
L168.8,342.3 L169.5,342.3 L170.1,342.3 L170.8,342.2 L171.4,342.2 L172.0,342.2 L172.7,342.2 L173.3,342.2
|
||||
L174.0,342.2 L174.6,342.2 L175.2,342.2 L175.9,342.2 L176.5,342.2 L177.1,342.2 L177.8,342.2 L178.4,342.2
|
||||
L179.1,342.2 L179.7,342.2 L180.3,342.2 L181.0,342.2 L181.6,342.2 L182.3,342.2 L182.9,342.2 L183.5,342.2
|
||||
L184.2,342.2 L184.8,342.2 L185.5,342.2 L186.1,342.2 L186.7,342.2 L187.4,342.1 L188.0,342.1 L188.7,342.1
|
||||
L189.3,342.1 L189.9,342.1 L190.6,342.1 L191.2,342.1 L191.9,342.1 L192.5,342.1 L193.1,342.1 L193.8,342.1
|
||||
L194.4,342.1 L195.0,342.1 L195.7,342.1 L196.3,342.1 L197.0,342.1 L197.6,342.0 L198.2,342.0 L198.9,342.0
|
||||
L199.5,342.0 L200.2,342.0 L200.8,342.0 L201.4,342.0 L202.1,342.0 L202.7,342.0 L203.4,342.0 L204.0,342.0
|
||||
L204.6,342.0 L205.3,342.0 L205.9,341.9 L206.6,341.9 L207.2,341.9 L207.8,341.9 L208.5,341.9 L209.1,341.9
|
||||
L209.8,341.9 L210.4,341.9 L211.0,341.9 L211.7,341.9 L212.3,341.8 L212.9,341.8 L213.6,341.8 L214.2,341.8
|
||||
L214.9,341.8 L215.5,341.8 L216.1,341.8 L216.8,341.8 L217.4,341.7 L218.1,341.7 L218.7,341.7 L219.3,341.7
|
||||
L220.0,341.7 L220.6,341.7 L221.3,341.7 L221.9,341.7 L222.5,341.6 L223.2,341.6 L223.8,341.6 L224.5,341.6
|
||||
L225.1,341.6 L225.7,341.6 L226.4,341.5 L227.0,341.5 L227.7,341.5 L228.3,341.5 L228.9,341.5 L229.6,341.4
|
||||
L230.2,341.4 L230.8,341.4 L231.5,341.4 L232.1,341.4 L232.8,341.3 L233.4,341.3 L234.0,341.3 L234.7,341.3
|
||||
L235.3,341.3 L236.0,341.2 L236.6,341.2 L237.2,341.2 L237.9,341.2 L238.5,341.1 L239.2,341.1 L239.8,341.1
|
||||
L240.4,341.1 L241.1,341.0 L241.7,341.0 L242.4,341.0 L243.0,341.0 L243.6,340.9 L244.3,340.9 L244.9,340.9
|
||||
L245.6,340.8 L246.2,340.8 L246.8,340.8 L247.5,340.7 L248.1,340.7 L248.7,340.7 L249.4,340.6 L250.0,340.6
|
||||
L250.7,340.6 L251.3,340.5 L251.9,340.5 L252.6,340.4 L253.2,340.4 L253.9,340.4 L254.5,340.3 L255.1,340.3
|
||||
L255.8,340.2 L256.4,340.2 L257.1,340.1 L257.7,340.1 L258.3,340.1 L259.0,340.0 L259.6,340.0 L260.3,339.9
|
||||
L260.9,339.9 L261.5,339.8 L262.2,339.8 L262.8,339.7 L263.5,339.7 L264.1,339.6 L264.7,339.5 L265.4,339.5
|
||||
L266.0,339.4 L266.7,339.4 L267.3,339.3 L267.9,339.2 L268.6,339.2 L269.2,339.1 L269.8,339.0 L270.5,339.0
|
||||
L271.1,338.9 L271.8,338.8 L272.4,338.8 L273.0,338.7 L273.7,338.6 L274.3,338.5 L275.0,338.5 L275.6,338.4
|
||||
L276.2,338.3 L276.9,338.2 L277.5,338.1 L278.2,338.0 L278.8,338.0 L279.4,337.9 L280.1,337.8 L280.7,337.7
|
||||
L281.4,337.6 L282.0,337.5 L282.6,337.4 L283.3,337.3 L283.9,337.2 L284.6,337.1 L285.2,337.0 L285.8,336.9
|
||||
L286.5,336.8 L287.1,336.6 L287.7,336.5 L288.4,336.4 L289.0,336.3 L289.7,336.2 L290.3,336.0 L290.9,335.9
|
||||
L291.6,335.8 L292.2,335.6 L292.9,335.5 L293.5,335.4 L294.1,335.2 L294.8,335.1 L295.4,334.9 L296.1,334.8
|
||||
L296.7,334.6 L297.3,334.5 L298.0,334.3 L298.6,334.1 L299.3,334.0 L299.9,333.8 L300.5,333.6 L301.2,333.5
|
||||
L301.8,333.3 L302.5,333.1 L303.1,332.9 L303.7,332.7 L304.4,332.5 L305.0,332.3 L305.6,332.1 L306.3,331.9
|
||||
L306.9,331.7 L307.6,331.5 L308.2,331.3 L308.8,331.0 L309.5,330.8 L310.1,330.6 L310.8,330.3 L311.4,330.1
|
||||
L312.0,329.8 L312.7,329.6 L313.3,329.3 L314.0,329.1 L314.6,328.8 L315.2,328.5 L315.9,328.2 L316.5,327.9
|
||||
L317.2,327.7 L317.8,327.4 L318.4,327.1 L319.1,326.7 L319.7,326.4 L320.4,326.1 L321.0,325.8 L321.6,325.4
|
||||
L322.3,325.1 L322.9,324.7 L323.5,324.4 L324.2,324.0 L324.8,323.7 L325.5,323.3 L326.1,322.9 L326.7,322.5
|
||||
L327.4,322.1 L328.0,321.7 L328.7,321.3 L329.3,320.8 L329.9,320.4 L330.6,320.0 L331.2,319.5 L331.9,319.0
|
||||
L332.5,318.6 L333.1,318.1 L333.8,317.6 L334.4,317.1 L335.1,316.6 L335.7,316.1 L336.3,315.5 L337.0,315.0
|
||||
L337.6,314.4 L338.3,313.9 L338.9,313.3 L339.5,312.7 L340.2,312.1 L340.8,311.5 L341.4,310.9 L342.1,310.2
|
||||
L342.7,309.6 L343.4,308.9 L344.0,308.2 L344.6,307.6 L345.3,306.8 L345.9,306.1 L346.6,305.4 L347.2,304.7
|
||||
L347.8,303.9 L348.5,303.1 L349.1,302.3 L349.8,301.5 L350.4,300.7 L351.0,299.8 L351.7,299.0 L352.3,298.1
|
||||
L353.0,297.2 L353.6,296.3 L354.2,295.4 L354.9,294.4 L355.5,293.4 L356.2,292.5 L356.8,291.4 L357.4,290.4
|
||||
L358.1,289.4 L358.7,288.3 L359.3,287.2 L360.0,286.1 L360.6,284.9 L361.3,283.8 L361.9,282.6 L362.5,281.4
|
||||
L363.2,280.2 L363.8,278.9 L364.5,277.6 L365.1,276.3 L365.7,275.0 L366.4,273.6 L367.0,272.2 L367.7,270.8
|
||||
L368.3,269.4 L368.9,267.9 L369.6,266.4 L370.2,264.8 L370.9,263.3 L371.5,261.7 L372.1,260.1 L372.8,258.4
|
||||
L373.4,256.7 L374.1,255.0 L374.7,253.2 L375.3,251.4 L376.0,249.6 L376.6,247.7 L377.2,245.8 L377.9,243.8
|
||||
L378.5,241.8 L379.2,239.8 L379.8,237.7 L380.4,235.6 L381.1,233.4 L381.7,231.2 L382.4,229.0 L383.0,226.7
|
||||
L383.6,224.4 L384.3,222.0 L384.9,219.5 L385.6,217.1 L386.2,214.5 L386.8,212.0 L387.5,209.3 L388.1,206.6
|
||||
L388.8,203.9 L389.4,201.1 L390.0,198.2 L390.7,195.3 L391.3,192.3 L392.0,189.3 L392.6,186.2 L393.2,183.1
|
||||
L393.9,179.9 L394.5,176.6 L395.1,173.2 L395.8,169.8 L396.4,166.3 L397.1,162.8 L397.7,159.1 L398.3,155.4
|
||||
L399.0,151.6 L399.6,147.8 L400.3,143.9 L400.9,139.9 L401.5,135.8 L402.2,131.6 L402.8,127.3 L403.5,123.0
|
||||
L404.1,118.6 L404.7,114.0 L405.4,109.4 L406.0,104.7 L406.7,99.9 L407.3,95.0 L407.9,90.0 L408.6,84.9
|
||||
L409.2,79.7 L409.9,74.4 L410.5,69.0 L411.1,63.5 L411.8,57.8 L412.4,52.1 L413.0,46.2 L413.7,52.1
|
||||
L414.3,57.8 L415.0,63.5 L415.6,69.0 L416.2,74.4 L416.9,79.7 L417.5,84.9 L418.2,90.0 L418.8,95.0
|
||||
L419.4,99.9 L420.1,104.7 L420.7,109.4 L421.4,114.0 L422.0,118.6 L422.6,123.0 L423.3,127.3 L423.9,131.6
|
||||
L424.6,135.8 L425.2,139.9 L425.8,143.9 L426.5,147.8 L427.1,151.6 L427.8,155.4 L428.4,159.1 L429.0,162.8
|
||||
L429.7,166.3 L430.3,169.8 L431.0,173.2 L431.6,176.6 L432.2,179.9 L432.9,183.1 L433.5,186.2 L434.1,189.3
|
||||
L434.8,192.3 L435.4,195.3 L436.1,198.2 L436.7,201.1 L437.3,203.9 L438.0,206.6 L438.6,209.3 L439.3,212.0
|
||||
L439.9,214.5 L440.5,217.1 L441.2,219.5 L441.8,222.0 L442.5,224.4 L443.1,226.7 L443.7,229.0 L444.4,231.2
|
||||
L445.0,233.4 L445.7,235.6 L446.3,237.7 L446.9,239.8 L447.6,241.8 L448.2,243.8 L448.9,245.8 L449.5,247.7
|
||||
L450.1,249.6 L450.8,251.4 L451.4,253.2 L452.0,255.0 L452.7,256.7 L453.3,258.4 L454.0,260.1 L454.6,261.7
|
||||
L455.2,263.3 L455.9,264.8 L456.5,266.4 L457.2,267.9 L457.8,269.4 L458.4,270.8 L459.1,272.2 L459.7,273.6
|
||||
L460.4,275.0 L461.0,276.3 L461.6,277.6 L462.3,278.9 L462.9,280.2 L463.6,281.4 L464.2,282.6 L464.8,283.8
|
||||
L465.5,284.9 L466.1,286.1 L466.8,287.2 L467.4,288.3 L468.0,289.4 L468.7,290.4 L469.3,291.4 L469.9,292.5
|
||||
L470.6,293.4 L471.2,294.4 L471.9,295.4 L472.5,296.3 L473.1,297.2 L473.8,298.1 L474.4,299.0 L475.1,299.8
|
||||
L475.7,300.7 L476.3,301.5 L477.0,302.3 L477.6,303.1 L478.3,303.9 L478.9,304.7 L479.5,305.4 L480.2,306.1
|
||||
L480.8,306.8 L481.5,307.6 L482.1,308.2 L482.7,308.9 L483.4,309.6 L484.0,310.2 L484.7,310.9 L485.3,311.5
|
||||
L485.9,312.1 L486.6,312.7 L487.2,313.3 L487.8,313.9 L488.5,314.4 L489.1,315.0 L489.8,315.5 L490.4,316.1
|
||||
L491.0,316.6 L491.7,317.1 L492.3,317.6 L493.0,318.1 L493.6,318.6 L494.2,319.0 L494.9,319.5 L495.5,320.0
|
||||
L496.2,320.4 L496.8,320.8 L497.4,321.3 L498.1,321.7 L498.7,322.1 L499.4,322.5 L500.0,322.9 L500.6,323.3
|
||||
L501.3,323.7 L501.9,324.0 L502.6,324.4 L503.2,324.7 L503.8,325.1 L504.5,325.4 L505.1,325.8 L505.7,326.1
|
||||
L506.4,326.4 L507.0,326.7 L507.7,327.1 L508.3,327.4 L508.9,327.7 L509.6,327.9 L510.2,328.2 L510.9,328.5
|
||||
L511.5,328.8 L512.1,329.1 L512.8,329.3 L513.4,329.6 L514.1,329.8 L514.7,330.1 L515.3,330.3 L516.0,330.6
|
||||
L516.6,330.8 L517.3,331.0 L517.9,331.3 L518.5,331.5 L519.2,331.7 L519.8,331.9 L520.5,332.1 L521.1,332.3
|
||||
L521.7,332.5 L522.4,332.7 L523.0,332.9 L523.6,333.1 L524.3,333.3 L524.9,333.5 L525.6,333.6 L526.2,333.8
|
||||
L526.8,334.0 L527.5,334.1 L528.1,334.3 L528.8,334.5 L529.4,334.6 L530.0,334.8 L530.7,334.9 L531.3,335.1
|
||||
L532.0,335.2 L532.6,335.4 L533.2,335.5 L533.9,335.6 L534.5,335.8 L535.2,335.9 L535.8,336.0 L536.4,336.2
|
||||
L537.1,336.3 L537.7,336.4 L538.4,336.5 L539.0,336.6 L539.6,336.8 L540.3,336.9 L540.9,337.0 L541.5,337.1
|
||||
L542.2,337.2 L542.8,337.3 L543.5,337.4 L544.1,337.5 L544.7,337.6 L545.4,337.7 L546.0,337.8 L546.7,337.9
|
||||
L547.3,338.0 L547.9,338.0 L548.6,338.1 L549.2,338.2 L549.9,338.3 L550.5,338.4 L551.1,338.5 L551.8,338.5
|
||||
L552.4,338.6 L553.1,338.7 L553.7,338.8 L554.3,338.8 L555.0,338.9 L555.6,339.0 L556.3,339.0 L556.9,339.1
|
||||
L557.5,339.2 L558.2,339.2 L558.8,339.3 L559.4,339.4 L560.1,339.4 L560.7,339.5 L561.4,339.5 L562.0,339.6
|
||||
L562.6,339.7 L563.3,339.7 L563.9,339.8 L564.6,339.8 L565.2,339.9 L565.8,339.9 L566.5,340.0 L567.1,340.0
|
||||
L567.8,340.1 L568.4,340.1 L569.0,340.1 L569.7,340.2 L570.3,340.2 L571.0,340.3 L571.6,340.3 L572.2,340.4
|
||||
L572.9,340.4 L573.5,340.4 L574.2,340.5 L574.8,340.5 L575.4,340.6 L576.1,340.6 L576.7,340.6 L577.4,340.7
|
||||
L578.0,340.7 L578.6,340.7 L579.3,340.8 L579.9,340.8 L580.5,340.8 L581.2,340.9 L581.8,340.9 L582.5,340.9
|
||||
L583.1,341.0 L583.7,341.0 L584.4,341.0 L585.0,341.0 L585.7,341.1 L586.3,341.1 L586.9,341.1 L587.6,341.1
|
||||
L588.2,341.2 L588.9,341.2 L589.5,341.2 L590.1,341.2 L590.8,341.3 L591.4,341.3 L592.1,341.3 L592.7,341.3
|
||||
L593.3,341.3 L594.0,341.4 L594.6,341.4 L595.3,341.4 L595.9,341.4 L596.5,341.4 L597.2,341.5 L597.8,341.5
|
||||
L598.4,341.5 L599.1,341.5 L599.7,341.5 L600.4,341.6 L601.0,341.6 L601.6,341.6 L602.3,341.6 L602.9,341.6
|
||||
L603.6,341.6 L604.2,341.7 L604.8,341.7 L605.5,341.7 L606.1,341.7 L606.8,341.7 L607.4,341.7 L608.0,341.7
|
||||
L608.7,341.7 L609.3,341.8 L610.0,341.8 L610.6,341.8 L611.2,341.8 L611.9,341.8 L612.5,341.8 L613.2,341.8
|
||||
L613.8,341.8 L614.4,341.9 L615.1,341.9 L615.7,341.9 L616.3,341.9 L617.0,341.9 L617.6,341.9 L618.3,341.9
|
||||
L618.9,341.9 L619.5,341.9 L620.2,341.9 L620.8,342.0 L621.5,342.0 L622.1,342.0 L622.7,342.0 L623.4,342.0
|
||||
L624.0,342.0 L624.7,342.0 L625.3,342.0 L625.9,342.0 L626.6,342.0 L627.2,342.0 L627.9,342.0 L628.5,342.0
|
||||
L629.1,342.1 L629.8,342.1 L630.4,342.1 L631.1,342.1 L631.7,342.1 L632.3,342.1 L633.0,342.1 L633.6,342.1
|
||||
L634.2,342.1 L634.9,342.1 L635.5,342.1 L636.2,342.1 L636.8,342.1 L637.4,342.1 L638.1,342.1 L638.7,342.1
|
||||
L639.4,342.2 L640.0,342.2 L640.6,342.2 L641.3,342.2 L641.9,342.2 L642.6,342.2 L643.2,342.2 L643.8,342.2
|
||||
L644.5,342.2 L645.1,342.2 L645.8,342.2 L646.4,342.2 L647.0,342.2 L647.7,342.2 L648.3,342.2 L649.0,342.2
|
||||
L649.6,342.2 L650.2,342.2 L650.9,342.2 L651.5,342.2 L652.1,342.2 L652.8,342.2 L653.4,342.2 L654.1,342.2
|
||||
L654.7,342.2 L655.3,342.2 L656.0,342.3 L656.6,342.3 L657.3,342.3 L657.9,342.3 L658.5,342.3 L659.2,342.3
|
||||
L659.8,342.3 L660.5,342.3 L661.1,342.3 L661.7,342.3 L662.4,342.3 L663.0,342.3 L663.7,342.3 L664.3,342.3
|
||||
L664.9,342.3 L665.6,342.3 L666.2,342.3 L666.9,342.3 L667.5,342.3 L668.1,342.3 L668.8,342.3 L669.4,342.3
|
||||
L670.0,342.3 L670.7,342.3 L671.3,342.3 L672.0,342.3 L672.6,342.3 L673.2,342.3 L673.9,342.3 L674.5,342.3
|
||||
L675.2,342.3 L675.8,342.3 L676.4,342.3 L677.1,342.3 L677.7,342.3 L678.4,342.3 L679.0,342.3 L679.6,342.3
|
||||
L680.3,342.3 L680.9,342.3 L681.6,342.3 L682.2,342.3 L682.8,342.3 L683.5,342.3 L684.1,342.3 L684.8,342.3
|
||||
L685.4,342.3 L686.0,342.3 L686.7,342.3 L687.3,342.3 L687.9,342.3 L688.6,342.3 L689.2,342.3 L689.9,342.3
|
||||
L690.5,342.3 L691.1,342.4 L691.8,342.4 L692.4,342.4 L693.1,342.4 L693.7,342.4 L694.3,342.4 L695.0,342.4
|
||||
L695.6,342.4 L696.3,342.4 L696.9,342.4 L697.5,342.4 L698.2,342.4 L698.8,342.4 L699.5,342.4 L700.1,342.4
|
||||
L700.7,342.4 L701.4,342.4 L702.0,342.4 L702.7,342.4 L703.3,342.4 L703.9,342.4 L704.6,342.4 L705.2,342.4
|
||||
L705.8,342.4 L706.5,342.4 L707.1,342.4 L707.8,342.4 L708.4,342.4 L709.0,342.4 L709.7,342.4 L710.3,342.4
|
||||
L711.0,342.4 L711.6,342.4 L712.2,342.4 L712.9,342.4 L713.5,342.4 L714.2,342.4 L714.8,342.4 L715.4,342.4
|
||||
L716.1,342.4 L716.7,342.4 L717.4,342.4 L718.0,342.4 L718.6,342.4 L719.3,342.4 L719.9,342.4 L720.6,342.4
|
||||
L721.2,342.4 L721.8,342.4 L722.5,342.4 L723.1,342.4 L723.7,342.4 L724.4,342.4 L725.0,342.4 L725.7,342.4
|
||||
L726.3,342.4 L726.9,342.4 L727.6,342.4 L728.2,342.4 L728.9,342.4 L729.5,342.4 L730.1,342.4 L730.8,342.4
|
||||
L731.4,342.4 L732.1,342.4 L732.7,342.4 '></path>
|
||||
</g>
|
||||
<g style="fill:none; color:blue; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
</g>
|
||||
<g style="fill:none; color:black; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<g transform="translate(665.6,75.1)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan>μ = 2, σ = 4</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
<g style="fill:none; color:blue; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<path d='M673.9,70.6 L716.1,70.6 M93.4,342.4 L94.0,342.4 L94.7,342.4 L95.3,342.4 L96.0,342.4 L96.6,342.4
|
||||
L97.2,342.4 L97.9,342.4 L98.5,342.4 L99.2,342.4 L99.8,342.4 L100.4,342.4 L101.1,342.4 L101.7,342.4
|
||||
L102.4,342.4 L103.0,342.4 L103.6,342.4 L104.3,342.4 L104.9,342.4 L105.5,342.4 L106.2,342.4 L106.8,342.4
|
||||
L107.5,342.4 L108.1,342.4 L108.7,342.4 L109.4,342.4 L110.0,342.4 L110.7,342.4 L111.3,342.4 L111.9,342.4
|
||||
L112.6,342.4 L113.2,342.4 L113.9,342.4 L114.5,342.4 L115.1,342.4 L115.8,342.4 L116.4,342.4 L117.1,342.4
|
||||
L117.7,342.4 L118.3,342.4 L119.0,342.4 L119.6,342.4 L120.3,342.4 L120.9,342.4 L121.5,342.4 L122.2,342.4
|
||||
L122.8,342.4 L123.4,342.4 L124.1,342.4 L124.7,342.4 L125.4,342.4 L126.0,342.4 L126.6,342.4 L127.3,342.4
|
||||
L127.9,342.4 L128.6,342.4 L129.2,342.4 L129.8,342.4 L130.5,342.4 L131.1,342.4 L131.8,342.4 L132.4,342.4
|
||||
L133.0,342.4 L133.7,342.4 L134.3,342.4 L135.0,342.4 L135.6,342.4 L136.2,342.4 L136.9,342.4 L137.5,342.4
|
||||
L138.2,342.4 L138.8,342.4 L139.4,342.4 L140.1,342.4 L140.7,342.4 L141.3,342.4 L142.0,342.4 L142.6,342.4
|
||||
L143.3,342.4 L143.9,342.4 L144.5,342.4 L145.2,342.4 L145.8,342.4 L146.5,342.4 L147.1,342.4 L147.7,342.4
|
||||
L148.4,342.4 L149.0,342.4 L149.7,342.4 L150.3,342.4 L150.9,342.4 L151.6,342.4 L152.2,342.4 L152.9,342.4
|
||||
L153.5,342.4 L154.1,342.4 L154.8,342.4 L155.4,342.4 L156.1,342.4 L156.7,342.4 L157.3,342.4 L158.0,342.4
|
||||
L158.6,342.4 L159.2,342.4 L159.9,342.4 L160.5,342.4 L161.2,342.4 L161.8,342.4 L162.4,342.4 L163.1,342.4
|
||||
L163.7,342.4 L164.4,342.4 L165.0,342.4 L165.6,342.4 L166.3,342.4 L166.9,342.4 L167.6,342.4 L168.2,342.4
|
||||
L168.8,342.4 L169.5,342.4 L170.1,342.4 L170.8,342.4 L171.4,342.4 L172.0,342.4 L172.7,342.4 L173.3,342.4
|
||||
L174.0,342.4 L174.6,342.4 L175.2,342.4 L175.9,342.4 L176.5,342.4 L177.1,342.4 L177.8,342.4 L178.4,342.4
|
||||
L179.1,342.4 L179.7,342.4 L180.3,342.4 L181.0,342.4 L181.6,342.4 L182.3,342.4 L182.9,342.4 L183.5,342.4
|
||||
L184.2,342.4 L184.8,342.4 L185.5,342.4 L186.1,342.4 L186.7,342.4 L187.4,342.4 L188.0,342.4 L188.7,342.4
|
||||
L189.3,342.4 L189.9,342.4 L190.6,342.4 L191.2,342.4 L191.9,342.4 L192.5,342.4 L193.1,342.4 L193.8,342.4
|
||||
L194.4,342.4 L195.0,342.4 L195.7,342.4 L196.3,342.4 L197.0,342.4 L197.6,342.4 L198.2,342.4 L198.9,342.4
|
||||
L199.5,342.3 L200.2,342.3 L200.8,342.3 L201.4,342.3 L202.1,342.3 L202.7,342.3 L203.4,342.3 L204.0,342.3
|
||||
L204.6,342.3 L205.3,342.3 L205.9,342.3 L206.6,342.3 L207.2,342.3 L207.8,342.3 L208.5,342.3 L209.1,342.3
|
||||
L209.8,342.3 L210.4,342.3 L211.0,342.3 L211.7,342.3 L212.3,342.3 L212.9,342.3 L213.6,342.3 L214.2,342.3
|
||||
L214.9,342.3 L215.5,342.3 L216.1,342.3 L216.8,342.3 L217.4,342.3 L218.1,342.3 L218.7,342.3 L219.3,342.3
|
||||
L220.0,342.3 L220.6,342.3 L221.3,342.3 L221.9,342.3 L222.5,342.3 L223.2,342.3 L223.8,342.3 L224.5,342.3
|
||||
L225.1,342.3 L225.7,342.3 L226.4,342.3 L227.0,342.3 L227.7,342.3 L228.3,342.3 L228.9,342.3 L229.6,342.3
|
||||
L230.2,342.3 L230.8,342.3 L231.5,342.3 L232.1,342.3 L232.8,342.3 L233.4,342.3 L234.0,342.3 L234.7,342.2
|
||||
L235.3,342.2 L236.0,342.2 L236.6,342.2 L237.2,342.2 L237.9,342.2 L238.5,342.2 L239.2,342.2 L239.8,342.2
|
||||
L240.4,342.2 L241.1,342.2 L241.7,342.2 L242.4,342.2 L243.0,342.2 L243.6,342.2 L244.3,342.2 L244.9,342.2
|
||||
L245.6,342.2 L246.2,342.2 L246.8,342.2 L247.5,342.2 L248.1,342.2 L248.7,342.2 L249.4,342.2 L250.0,342.2
|
||||
L250.7,342.2 L251.3,342.1 L251.9,342.1 L252.6,342.1 L253.2,342.1 L253.9,342.1 L254.5,342.1 L255.1,342.1
|
||||
L255.8,342.1 L256.4,342.1 L257.1,342.1 L257.7,342.1 L258.3,342.1 L259.0,342.1 L259.6,342.1 L260.3,342.1
|
||||
L260.9,342.1 L261.5,342.0 L262.2,342.0 L262.8,342.0 L263.5,342.0 L264.1,342.0 L264.7,342.0 L265.4,342.0
|
||||
L266.0,342.0 L266.7,342.0 L267.3,342.0 L267.9,342.0 L268.6,342.0 L269.2,342.0 L269.8,341.9 L270.5,341.9
|
||||
L271.1,341.9 L271.8,341.9 L272.4,341.9 L273.0,341.9 L273.7,341.9 L274.3,341.9 L275.0,341.9 L275.6,341.9
|
||||
L276.2,341.8 L276.9,341.8 L277.5,341.8 L278.2,341.8 L278.8,341.8 L279.4,341.8 L280.1,341.8 L280.7,341.8
|
||||
L281.4,341.7 L282.0,341.7 L282.6,341.7 L283.3,341.7 L283.9,341.7 L284.6,341.7 L285.2,341.7 L285.8,341.7
|
||||
L286.5,341.6 L287.1,341.6 L287.7,341.6 L288.4,341.6 L289.0,341.6 L289.7,341.6 L290.3,341.5 L290.9,341.5
|
||||
L291.6,341.5 L292.2,341.5 L292.9,341.5 L293.5,341.4 L294.1,341.4 L294.8,341.4 L295.4,341.4 L296.1,341.4
|
||||
L296.7,341.3 L297.3,341.3 L298.0,341.3 L298.6,341.3 L299.3,341.3 L299.9,341.2 L300.5,341.2 L301.2,341.2
|
||||
L301.8,341.2 L302.5,341.1 L303.1,341.1 L303.7,341.1 L304.4,341.1 L305.0,341.0 L305.6,341.0 L306.3,341.0
|
||||
L306.9,341.0 L307.6,340.9 L308.2,340.9 L308.8,340.9 L309.5,340.8 L310.1,340.8 L310.8,340.8 L311.4,340.7
|
||||
L312.0,340.7 L312.7,340.7 L313.3,340.6 L314.0,340.6 L314.6,340.6 L315.2,340.5 L315.9,340.5 L316.5,340.4
|
||||
L317.2,340.4 L317.8,340.4 L318.4,340.3 L319.1,340.3 L319.7,340.2 L320.4,340.2 L321.0,340.1 L321.6,340.1
|
||||
L322.3,340.1 L322.9,340.0 L323.5,340.0 L324.2,339.9 L324.8,339.9 L325.5,339.8 L326.1,339.8 L326.7,339.7
|
||||
L327.4,339.7 L328.0,339.6 L328.7,339.5 L329.3,339.5 L329.9,339.4 L330.6,339.4 L331.2,339.3 L331.9,339.2
|
||||
L332.5,339.2 L333.1,339.1 L333.8,339.0 L334.4,339.0 L335.1,338.9 L335.7,338.8 L336.3,338.8 L337.0,338.7
|
||||
L337.6,338.6 L338.3,338.5 L338.9,338.5 L339.5,338.4 L340.2,338.3 L340.8,338.2 L341.4,338.1 L342.1,338.0
|
||||
L342.7,338.0 L343.4,337.9 L344.0,337.8 L344.6,337.7 L345.3,337.6 L345.9,337.5 L346.6,337.4 L347.2,337.3
|
||||
L347.8,337.2 L348.5,337.1 L349.1,337.0 L349.8,336.9 L350.4,336.8 L351.0,336.6 L351.7,336.5 L352.3,336.4
|
||||
L353.0,336.3 L353.6,336.2 L354.2,336.0 L354.9,335.9 L355.5,335.8 L356.2,335.6 L356.8,335.5 L357.4,335.4
|
||||
L358.1,335.2 L358.7,335.1 L359.3,334.9 L360.0,334.8 L360.6,334.6 L361.3,334.5 L361.9,334.3 L362.5,334.1
|
||||
L363.2,334.0 L363.8,333.8 L364.5,333.6 L365.1,333.5 L365.7,333.3 L366.4,333.1 L367.0,332.9 L367.7,332.7
|
||||
L368.3,332.5 L368.9,332.3 L369.6,332.1 L370.2,331.9 L370.9,331.7 L371.5,331.5 L372.1,331.3 L372.8,331.0
|
||||
L373.4,330.8 L374.1,330.6 L374.7,330.3 L375.3,330.1 L376.0,329.8 L376.6,329.6 L377.2,329.3 L377.9,329.1
|
||||
L378.5,328.8 L379.2,328.5 L379.8,328.2 L380.4,327.9 L381.1,327.7 L381.7,327.4 L382.4,327.1 L383.0,326.7
|
||||
L383.6,326.4 L384.3,326.1 L384.9,325.8 L385.6,325.4 L386.2,325.1 L386.8,324.7 L387.5,324.4 L388.1,324.0
|
||||
L388.8,323.7 L389.4,323.3 L390.0,322.9 L390.7,322.5 L391.3,322.1 L392.0,321.7 L392.6,321.3 L393.2,320.8
|
||||
L393.9,320.4 L394.5,320.0 L395.1,319.5 L395.8,319.0 L396.4,318.6 L397.1,318.1 L397.7,317.6 L398.3,317.1
|
||||
L399.0,316.6 L399.6,316.1 L400.3,315.5 L400.9,315.0 L401.5,314.4 L402.2,313.9 L402.8,313.3 L403.5,312.7
|
||||
L404.1,312.1 L404.7,311.5 L405.4,310.9 L406.0,310.2 L406.7,309.6 L407.3,308.9 L407.9,308.2 L408.6,307.6
|
||||
L409.2,306.8 L409.9,306.1 L410.5,305.4 L411.1,304.7 L411.8,303.9 L412.4,303.1 L413.0,302.3 L413.7,301.5
|
||||
L414.3,300.7 L415.0,299.8 L415.6,299.0 L416.2,298.1 L416.9,297.2 L417.5,296.3 L418.2,295.4 L418.8,294.4
|
||||
L419.4,293.4 L420.1,292.5 L420.7,291.4 L421.4,290.4 L422.0,289.4 L422.6,288.3 L423.3,287.2 L423.9,286.1
|
||||
L424.6,284.9 L425.2,283.8 L425.8,282.6 L426.5,281.4 L427.1,280.2 L427.8,278.9 L428.4,277.6 L429.0,276.3
|
||||
L429.7,275.0 L430.3,273.6 L431.0,272.2 L431.6,270.8 L432.2,269.4 L432.9,267.9 L433.5,266.4 L434.1,264.8
|
||||
L434.8,263.3 L435.4,261.7 L436.1,260.1 L436.7,258.4 L437.3,256.7 L438.0,255.0 L438.6,253.2 L439.3,251.4
|
||||
L439.9,249.6 L440.5,247.7 L441.2,245.8 L441.8,243.8 L442.5,241.8 L443.1,239.8 L443.7,237.7 L444.4,235.6
|
||||
L445.0,233.4 L445.7,231.2 L446.3,229.0 L446.9,226.7 L447.6,224.4 L448.2,222.0 L448.9,219.5 L449.5,217.1
|
||||
L450.1,214.5 L450.8,212.0 L451.4,209.3 L452.0,206.6 L452.7,203.9 L453.3,201.1 L454.0,198.2 L454.6,195.3
|
||||
L455.2,192.3 L455.9,189.3 L456.5,186.2 L457.2,183.1 L457.8,179.9 L458.4,176.6 L459.1,173.2 L459.7,169.8
|
||||
L460.4,166.3 L461.0,162.8 L461.6,159.1 L462.3,155.4 L462.9,151.6 L463.6,147.8 L464.2,143.9 L464.8,139.9
|
||||
L465.5,135.8 L466.1,131.6 L466.8,127.3 L467.4,123.0 L468.0,118.6 L468.7,114.0 L469.3,109.4 L469.9,104.7
|
||||
L470.6,99.9 L471.2,95.0 L471.9,90.0 L472.5,84.9 L473.1,79.7 L473.8,74.4 L474.4,69.0 L475.1,63.5
|
||||
L475.7,57.8 L476.3,52.1 L477.0,46.2 L477.6,52.1 L478.3,57.8 L478.9,63.5 L479.5,69.0 L480.2,74.4
|
||||
L480.8,79.7 L481.5,84.9 L482.1,90.0 L482.7,95.0 L483.4,99.9 L484.0,104.7 L484.7,109.4 L485.3,114.0
|
||||
L485.9,118.6 L486.6,123.0 L487.2,127.3 L487.8,131.6 L488.5,135.8 L489.1,139.9 L489.8,143.9 L490.4,147.8
|
||||
L491.0,151.6 L491.7,155.4 L492.3,159.1 L493.0,162.8 L493.6,166.3 L494.2,169.8 L494.9,173.2 L495.5,176.6
|
||||
L496.2,179.9 L496.8,183.1 L497.4,186.2 L498.1,189.3 L498.7,192.3 L499.4,195.3 L500.0,198.2 L500.6,201.1
|
||||
L501.3,203.9 L501.9,206.6 L502.6,209.3 L503.2,212.0 L503.8,214.5 L504.5,217.1 L505.1,219.5 L505.7,222.0
|
||||
L506.4,224.4 L507.0,226.7 L507.7,229.0 L508.3,231.2 L508.9,233.4 L509.6,235.6 L510.2,237.7 L510.9,239.8
|
||||
L511.5,241.8 L512.1,243.8 L512.8,245.8 L513.4,247.7 L514.1,249.6 L514.7,251.4 L515.3,253.2 L516.0,255.0
|
||||
L516.6,256.7 L517.3,258.4 L517.9,260.1 L518.5,261.7 L519.2,263.3 L519.8,264.8 L520.5,266.4 L521.1,267.9
|
||||
L521.7,269.4 L522.4,270.8 L523.0,272.2 L523.6,273.6 L524.3,275.0 L524.9,276.3 L525.6,277.6 L526.2,278.9
|
||||
L526.8,280.2 L527.5,281.4 L528.1,282.6 L528.8,283.8 L529.4,284.9 L530.0,286.1 L530.7,287.2 L531.3,288.3
|
||||
L532.0,289.4 L532.6,290.4 L533.2,291.4 L533.9,292.5 L534.5,293.4 L535.2,294.4 L535.8,295.4 L536.4,296.3
|
||||
L537.1,297.2 L537.7,298.1 L538.4,299.0 L539.0,299.8 L539.6,300.7 L540.3,301.5 L540.9,302.3 L541.5,303.1
|
||||
L542.2,303.9 L542.8,304.7 L543.5,305.4 L544.1,306.1 L544.7,306.8 L545.4,307.6 L546.0,308.2 L546.7,308.9
|
||||
L547.3,309.6 L547.9,310.2 L548.6,310.9 L549.2,311.5 L549.9,312.1 L550.5,312.7 L551.1,313.3 L551.8,313.9
|
||||
L552.4,314.4 L553.1,315.0 L553.7,315.5 L554.3,316.1 L555.0,316.6 L555.6,317.1 L556.3,317.6 L556.9,318.1
|
||||
L557.5,318.6 L558.2,319.0 L558.8,319.5 L559.4,320.0 L560.1,320.4 L560.7,320.8 L561.4,321.3 L562.0,321.7
|
||||
L562.6,322.1 L563.3,322.5 L563.9,322.9 L564.6,323.3 L565.2,323.7 L565.8,324.0 L566.5,324.4 L567.1,324.7
|
||||
L567.8,325.1 L568.4,325.4 L569.0,325.8 L569.7,326.1 L570.3,326.4 L571.0,326.7 L571.6,327.1 L572.2,327.4
|
||||
L572.9,327.7 L573.5,327.9 L574.2,328.2 L574.8,328.5 L575.4,328.8 L576.1,329.1 L576.7,329.3 L577.4,329.6
|
||||
L578.0,329.8 L578.6,330.1 L579.3,330.3 L579.9,330.6 L580.5,330.8 L581.2,331.0 L581.8,331.3 L582.5,331.5
|
||||
L583.1,331.7 L583.7,331.9 L584.4,332.1 L585.0,332.3 L585.7,332.5 L586.3,332.7 L586.9,332.9 L587.6,333.1
|
||||
L588.2,333.3 L588.9,333.5 L589.5,333.6 L590.1,333.8 L590.8,334.0 L591.4,334.1 L592.1,334.3 L592.7,334.5
|
||||
L593.3,334.6 L594.0,334.8 L594.6,334.9 L595.3,335.1 L595.9,335.2 L596.5,335.4 L597.2,335.5 L597.8,335.6
|
||||
L598.4,335.8 L599.1,335.9 L599.7,336.0 L600.4,336.2 L601.0,336.3 L601.6,336.4 L602.3,336.5 L602.9,336.6
|
||||
L603.6,336.8 L604.2,336.9 L604.8,337.0 L605.5,337.1 L606.1,337.2 L606.8,337.3 L607.4,337.4 L608.0,337.5
|
||||
L608.7,337.6 L609.3,337.7 L610.0,337.8 L610.6,337.9 L611.2,338.0 L611.9,338.0 L612.5,338.1 L613.2,338.2
|
||||
L613.8,338.3 L614.4,338.4 L615.1,338.5 L615.7,338.5 L616.3,338.6 L617.0,338.7 L617.6,338.8 L618.3,338.8
|
||||
L618.9,338.9 L619.5,339.0 L620.2,339.0 L620.8,339.1 L621.5,339.2 L622.1,339.2 L622.7,339.3 L623.4,339.4
|
||||
L624.0,339.4 L624.7,339.5 L625.3,339.5 L625.9,339.6 L626.6,339.7 L627.2,339.7 L627.9,339.8 L628.5,339.8
|
||||
L629.1,339.9 L629.8,339.9 L630.4,340.0 L631.1,340.0 L631.7,340.1 L632.3,340.1 L633.0,340.1 L633.6,340.2
|
||||
L634.2,340.2 L634.9,340.3 L635.5,340.3 L636.2,340.4 L636.8,340.4 L637.4,340.4 L638.1,340.5 L638.7,340.5
|
||||
L639.4,340.6 L640.0,340.6 L640.6,340.6 L641.3,340.7 L641.9,340.7 L642.6,340.7 L643.2,340.8 L643.8,340.8
|
||||
L644.5,340.8 L645.1,340.9 L645.8,340.9 L646.4,340.9 L647.0,341.0 L647.7,341.0 L648.3,341.0 L649.0,341.0
|
||||
L649.6,341.1 L650.2,341.1 L650.9,341.1 L651.5,341.1 L652.1,341.2 L652.8,341.2 L653.4,341.2 L654.1,341.2
|
||||
L654.7,341.3 L655.3,341.3 L656.0,341.3 L656.6,341.3 L657.3,341.3 L657.9,341.4 L658.5,341.4 L659.2,341.4
|
||||
L659.8,341.4 L660.5,341.4 L661.1,341.5 L661.7,341.5 L662.4,341.5 L663.0,341.5 L663.7,341.5 L664.3,341.6
|
||||
L664.9,341.6 L665.6,341.6 L666.2,341.6 L666.9,341.6 L667.5,341.6 L668.1,341.7 L668.8,341.7 L669.4,341.7
|
||||
L670.0,341.7 L670.7,341.7 L671.3,341.7 L672.0,341.7 L672.6,341.7 L673.2,341.8 L673.9,341.8 L674.5,341.8
|
||||
L675.2,341.8 L675.8,341.8 L676.4,341.8 L677.1,341.8 L677.7,341.8 L678.4,341.9 L679.0,341.9 L679.6,341.9
|
||||
L680.3,341.9 L680.9,341.9 L681.6,341.9 L682.2,341.9 L682.8,341.9 L683.5,341.9 L684.1,341.9 L684.8,342.0
|
||||
L685.4,342.0 L686.0,342.0 L686.7,342.0 L687.3,342.0 L687.9,342.0 L688.6,342.0 L689.2,342.0 L689.9,342.0
|
||||
L690.5,342.0 L691.1,342.0 L691.8,342.0 L692.4,342.0 L693.1,342.1 L693.7,342.1 L694.3,342.1 L695.0,342.1
|
||||
L695.6,342.1 L696.3,342.1 L696.9,342.1 L697.5,342.1 L698.2,342.1 L698.8,342.1 L699.5,342.1 L700.1,342.1
|
||||
L700.7,342.1 L701.4,342.1 L702.0,342.1 L702.7,342.1 L703.3,342.2 L703.9,342.2 L704.6,342.2 L705.2,342.2
|
||||
L705.8,342.2 L706.5,342.2 L707.1,342.2 L707.8,342.2 L708.4,342.2 L709.0,342.2 L709.7,342.2 L710.3,342.2
|
||||
L711.0,342.2 L711.6,342.2 L712.2,342.2 L712.9,342.2 L713.5,342.2 L714.2,342.2 L714.8,342.2 L715.4,342.2
|
||||
L716.1,342.2 L716.7,342.2 L717.4,342.2 L718.0,342.2 L718.6,342.2 L719.3,342.2 L719.9,342.3 L720.6,342.3
|
||||
L721.2,342.3 L721.8,342.3 L722.5,342.3 L723.1,342.3 L723.7,342.3 L724.4,342.3 L725.0,342.3 L725.7,342.3
|
||||
L726.3,342.3 L726.9,342.3 L727.6,342.3 L728.2,342.3 L728.9,342.3 L729.5,342.3 L730.1,342.3 L730.8,342.3
|
||||
L731.4,342.3 L732.1,342.3 L732.7,342.3 '></path>
|
||||
</g>
|
||||
<g style="fill:none; color:black; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<path d='M93.4,16.6 L93.4,342.4 L732.7,342.4 L732.7,16.6 L93.4,16.6 Z '></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 47 KiB |
BIN
doc/sf_and_dist/graphs/laplace_pdf_sigma.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
537
doc/sf_and_dist/graphs/laplace_pdf_sigma.svg
Normal file
@@ -0,0 +1,537 @@
|
||||
<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
|
||||
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg width="750" height="400" viewBox="0 0 750 400"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<desc>Produced by GNUPLOT 4.2 patchlevel 4 </desc>
|
||||
|
||||
<defs>
|
||||
|
||||
|
||||
<circle id='gpDot' r='1'/>
|
||||
<path id='gpPt0' style='stroke-width:0.222' d='M-1,0 h2 M0,-1 v2'/>
|
||||
<path id='gpPt1' style='stroke-width:0.222' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
|
||||
<path id='gpPt2' style='stroke-width:0.222' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
|
||||
<rect id='gpPt3' style='stroke-width:0.222' x='-1' y='-1' width='2' height='2'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt4' style='fill:currentColor; stroke:none'/>
|
||||
<circle id='gpPt5' style='stroke-width:0.222' cx='0' cy='0' r='1'/>
|
||||
<use xlink:href='#gpPt5' id='gpPt6' style='fill:currentColor; stroke:none'/>
|
||||
<path id='gpPt7' style='stroke-width:0.222' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt8' style='fill:currentColor; stroke:none'/>
|
||||
<use xlink:href='#gpPt7' id='gpPt9' transform='rotate(180)'/>
|
||||
<use xlink:href='#gpPt9' id='gpPt10' style='fill:currentColor; stroke:none'/>
|
||||
<use xlink:href='#gpPt3' id='gpPt11' transform='rotate(45)'/>
|
||||
<use xlink:href='#gpPt11' id='gpPt12' style='fill:currentColor; stroke:none'/>
|
||||
</defs>
|
||||
<g style="fill:none; color:white; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
</g>
|
||||
<g style="fill:none; color:black; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<path d='M93.4,342.4 L102.4,342.4 M732.7,342.4 L723.7,342.4 '></path>
|
||||
<g transform="translate(85.1,346.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,283.2 L102.4,283.2 M732.7,283.2 L723.7,283.2 '></path>
|
||||
<g transform="translate(85.1,287.7)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0.1</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,223.9 L102.4,223.9 M732.7,223.9 L723.7,223.9 '></path>
|
||||
<g transform="translate(85.1,228.4)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0.2</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,164.7 L102.4,164.7 M732.7,164.7 L723.7,164.7 '></path>
|
||||
<g transform="translate(85.1,169.2)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0.3</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,105.5 L102.4,105.5 M732.7,105.5 L723.7,105.5 '></path>
|
||||
<g transform="translate(85.1,110.0)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0.4</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,46.2 L102.4,46.2 M732.7,46.2 L723.7,46.2 '></path>
|
||||
<g transform="translate(85.1,50.7)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan> 0.5</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,342.4 L93.4,333.4 M93.4,16.6 L93.4,25.6 '></path>
|
||||
<g transform="translate(93.4,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>-10</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M157.3,342.4 L157.3,333.4 M157.3,16.6 L157.3,25.6 '></path>
|
||||
<g transform="translate(157.3,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>-8</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M221.3,342.4 L221.3,333.4 M221.3,16.6 L221.3,25.6 '></path>
|
||||
<g transform="translate(221.3,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>-6</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M285.2,342.4 L285.2,333.4 M285.2,16.6 L285.2,25.6 '></path>
|
||||
<g transform="translate(285.2,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>-4</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M349.1,342.4 L349.1,333.4 M349.1,16.6 L349.1,25.6 '></path>
|
||||
<g transform="translate(349.1,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>-2</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M413.0,342.4 L413.0,333.4 M413.0,16.6 L413.0,25.6 '></path>
|
||||
<g transform="translate(413.0,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 0</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M477.0,342.4 L477.0,333.4 M477.0,16.6 L477.0,25.6 '></path>
|
||||
<g transform="translate(477.0,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 2</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M540.9,342.4 L540.9,333.4 M540.9,16.6 L540.9,25.6 '></path>
|
||||
<g transform="translate(540.9,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 4</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M604.8,342.4 L604.8,333.4 M604.8,16.6 L604.8,25.6 '></path>
|
||||
<g transform="translate(604.8,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 6</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M668.8,342.4 L668.8,333.4 M668.8,16.6 L668.8,25.6 '></path>
|
||||
<g transform="translate(668.8,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 8</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M732.7,342.4 L732.7,333.4 M732.7,16.6 L732.7,25.6 '></path>
|
||||
<g transform="translate(732.7,364.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan> 10</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<path d='M93.4,16.6 L93.4,342.4 L732.7,342.4 L732.7,16.6 L93.4,16.6 Z '></path>
|
||||
<g transform="translate(39.1,179.5) rotate(-90)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>Probability</tspan>
|
||||
</text>
|
||||
</g>
|
||||
<g transform="translate(413.0,391.9)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:middle">
|
||||
<text><tspan>Random Variable</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
<g style="fill:none; color:red; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
</g>
|
||||
<g style="fill:none; color:black; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<g transform="translate(665.6,39.1)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan>μ = 0, σ = 1</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
<g style="fill:none; color:red; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<path d='M673.9,34.6 L716.1,34.6 M93.4,342.4 L94.0,342.4 L94.7,342.4 L95.3,342.4 L96.0,342.4 L96.6,342.4
|
||||
L97.2,342.4 L97.9,342.4 L98.5,342.4 L99.2,342.4 L99.8,342.4 L100.4,342.4 L101.1,342.4 L101.7,342.4
|
||||
L102.4,342.4 L103.0,342.4 L103.6,342.4 L104.3,342.4 L104.9,342.4 L105.5,342.4 L106.2,342.4 L106.8,342.4
|
||||
L107.5,342.4 L108.1,342.4 L108.7,342.4 L109.4,342.4 L110.0,342.4 L110.7,342.4 L111.3,342.4 L111.9,342.4
|
||||
L112.6,342.4 L113.2,342.4 L113.9,342.4 L114.5,342.4 L115.1,342.4 L115.8,342.4 L116.4,342.4 L117.1,342.4
|
||||
L117.7,342.4 L118.3,342.4 L119.0,342.4 L119.6,342.4 L120.3,342.4 L120.9,342.4 L121.5,342.4 L122.2,342.4
|
||||
L122.8,342.4 L123.4,342.4 L124.1,342.4 L124.7,342.4 L125.4,342.4 L126.0,342.4 L126.6,342.4 L127.3,342.4
|
||||
L127.9,342.4 L128.6,342.4 L129.2,342.4 L129.8,342.4 L130.5,342.4 L131.1,342.4 L131.8,342.4 L132.4,342.4
|
||||
L133.0,342.4 L133.7,342.4 L134.3,342.4 L135.0,342.4 L135.6,342.3 L136.2,342.3 L136.9,342.3 L137.5,342.3
|
||||
L138.2,342.3 L138.8,342.3 L139.4,342.3 L140.1,342.3 L140.7,342.3 L141.3,342.3 L142.0,342.3 L142.6,342.3
|
||||
L143.3,342.3 L143.9,342.3 L144.5,342.3 L145.2,342.3 L145.8,342.3 L146.5,342.3 L147.1,342.3 L147.7,342.3
|
||||
L148.4,342.3 L149.0,342.3 L149.7,342.3 L150.3,342.3 L150.9,342.3 L151.6,342.3 L152.2,342.3 L152.9,342.3
|
||||
L153.5,342.3 L154.1,342.3 L154.8,342.3 L155.4,342.3 L156.1,342.3 L156.7,342.3 L157.3,342.3 L158.0,342.3
|
||||
L158.6,342.3 L159.2,342.3 L159.9,342.3 L160.5,342.3 L161.2,342.3 L161.8,342.3 L162.4,342.3 L163.1,342.3
|
||||
L163.7,342.3 L164.4,342.3 L165.0,342.3 L165.6,342.3 L166.3,342.3 L166.9,342.3 L167.6,342.3 L168.2,342.3
|
||||
L168.8,342.3 L169.5,342.3 L170.1,342.3 L170.8,342.2 L171.4,342.2 L172.0,342.2 L172.7,342.2 L173.3,342.2
|
||||
L174.0,342.2 L174.6,342.2 L175.2,342.2 L175.9,342.2 L176.5,342.2 L177.1,342.2 L177.8,342.2 L178.4,342.2
|
||||
L179.1,342.2 L179.7,342.2 L180.3,342.2 L181.0,342.2 L181.6,342.2 L182.3,342.2 L182.9,342.2 L183.5,342.2
|
||||
L184.2,342.2 L184.8,342.2 L185.5,342.2 L186.1,342.2 L186.7,342.2 L187.4,342.1 L188.0,342.1 L188.7,342.1
|
||||
L189.3,342.1 L189.9,342.1 L190.6,342.1 L191.2,342.1 L191.9,342.1 L192.5,342.1 L193.1,342.1 L193.8,342.1
|
||||
L194.4,342.1 L195.0,342.1 L195.7,342.1 L196.3,342.1 L197.0,342.1 L197.6,342.0 L198.2,342.0 L198.9,342.0
|
||||
L199.5,342.0 L200.2,342.0 L200.8,342.0 L201.4,342.0 L202.1,342.0 L202.7,342.0 L203.4,342.0 L204.0,342.0
|
||||
L204.6,342.0 L205.3,342.0 L205.9,341.9 L206.6,341.9 L207.2,341.9 L207.8,341.9 L208.5,341.9 L209.1,341.9
|
||||
L209.8,341.9 L210.4,341.9 L211.0,341.9 L211.7,341.9 L212.3,341.8 L212.9,341.8 L213.6,341.8 L214.2,341.8
|
||||
L214.9,341.8 L215.5,341.8 L216.1,341.8 L216.8,341.8 L217.4,341.7 L218.1,341.7 L218.7,341.7 L219.3,341.7
|
||||
L220.0,341.7 L220.6,341.7 L221.3,341.7 L221.9,341.7 L222.5,341.6 L223.2,341.6 L223.8,341.6 L224.5,341.6
|
||||
L225.1,341.6 L225.7,341.6 L226.4,341.5 L227.0,341.5 L227.7,341.5 L228.3,341.5 L228.9,341.5 L229.6,341.4
|
||||
L230.2,341.4 L230.8,341.4 L231.5,341.4 L232.1,341.4 L232.8,341.3 L233.4,341.3 L234.0,341.3 L234.7,341.3
|
||||
L235.3,341.3 L236.0,341.2 L236.6,341.2 L237.2,341.2 L237.9,341.2 L238.5,341.1 L239.2,341.1 L239.8,341.1
|
||||
L240.4,341.1 L241.1,341.0 L241.7,341.0 L242.4,341.0 L243.0,341.0 L243.6,340.9 L244.3,340.9 L244.9,340.9
|
||||
L245.6,340.8 L246.2,340.8 L246.8,340.8 L247.5,340.7 L248.1,340.7 L248.7,340.7 L249.4,340.6 L250.0,340.6
|
||||
L250.7,340.6 L251.3,340.5 L251.9,340.5 L252.6,340.4 L253.2,340.4 L253.9,340.4 L254.5,340.3 L255.1,340.3
|
||||
L255.8,340.2 L256.4,340.2 L257.1,340.1 L257.7,340.1 L258.3,340.1 L259.0,340.0 L259.6,340.0 L260.3,339.9
|
||||
L260.9,339.9 L261.5,339.8 L262.2,339.8 L262.8,339.7 L263.5,339.7 L264.1,339.6 L264.7,339.5 L265.4,339.5
|
||||
L266.0,339.4 L266.7,339.4 L267.3,339.3 L267.9,339.2 L268.6,339.2 L269.2,339.1 L269.8,339.0 L270.5,339.0
|
||||
L271.1,338.9 L271.8,338.8 L272.4,338.8 L273.0,338.7 L273.7,338.6 L274.3,338.5 L275.0,338.5 L275.6,338.4
|
||||
L276.2,338.3 L276.9,338.2 L277.5,338.1 L278.2,338.0 L278.8,338.0 L279.4,337.9 L280.1,337.8 L280.7,337.7
|
||||
L281.4,337.6 L282.0,337.5 L282.6,337.4 L283.3,337.3 L283.9,337.2 L284.6,337.1 L285.2,337.0 L285.8,336.9
|
||||
L286.5,336.8 L287.1,336.6 L287.7,336.5 L288.4,336.4 L289.0,336.3 L289.7,336.2 L290.3,336.0 L290.9,335.9
|
||||
L291.6,335.8 L292.2,335.6 L292.9,335.5 L293.5,335.4 L294.1,335.2 L294.8,335.1 L295.4,334.9 L296.1,334.8
|
||||
L296.7,334.6 L297.3,334.5 L298.0,334.3 L298.6,334.1 L299.3,334.0 L299.9,333.8 L300.5,333.6 L301.2,333.5
|
||||
L301.8,333.3 L302.5,333.1 L303.1,332.9 L303.7,332.7 L304.4,332.5 L305.0,332.3 L305.6,332.1 L306.3,331.9
|
||||
L306.9,331.7 L307.6,331.5 L308.2,331.3 L308.8,331.0 L309.5,330.8 L310.1,330.6 L310.8,330.3 L311.4,330.1
|
||||
L312.0,329.8 L312.7,329.6 L313.3,329.3 L314.0,329.1 L314.6,328.8 L315.2,328.5 L315.9,328.2 L316.5,327.9
|
||||
L317.2,327.7 L317.8,327.4 L318.4,327.1 L319.1,326.7 L319.7,326.4 L320.4,326.1 L321.0,325.8 L321.6,325.4
|
||||
L322.3,325.1 L322.9,324.7 L323.5,324.4 L324.2,324.0 L324.8,323.7 L325.5,323.3 L326.1,322.9 L326.7,322.5
|
||||
L327.4,322.1 L328.0,321.7 L328.7,321.3 L329.3,320.8 L329.9,320.4 L330.6,320.0 L331.2,319.5 L331.9,319.0
|
||||
L332.5,318.6 L333.1,318.1 L333.8,317.6 L334.4,317.1 L335.1,316.6 L335.7,316.1 L336.3,315.5 L337.0,315.0
|
||||
L337.6,314.4 L338.3,313.9 L338.9,313.3 L339.5,312.7 L340.2,312.1 L340.8,311.5 L341.4,310.9 L342.1,310.2
|
||||
L342.7,309.6 L343.4,308.9 L344.0,308.2 L344.6,307.6 L345.3,306.8 L345.9,306.1 L346.6,305.4 L347.2,304.7
|
||||
L347.8,303.9 L348.5,303.1 L349.1,302.3 L349.8,301.5 L350.4,300.7 L351.0,299.8 L351.7,299.0 L352.3,298.1
|
||||
L353.0,297.2 L353.6,296.3 L354.2,295.4 L354.9,294.4 L355.5,293.4 L356.2,292.5 L356.8,291.4 L357.4,290.4
|
||||
L358.1,289.4 L358.7,288.3 L359.3,287.2 L360.0,286.1 L360.6,284.9 L361.3,283.8 L361.9,282.6 L362.5,281.4
|
||||
L363.2,280.2 L363.8,278.9 L364.5,277.6 L365.1,276.3 L365.7,275.0 L366.4,273.6 L367.0,272.2 L367.7,270.8
|
||||
L368.3,269.4 L368.9,267.9 L369.6,266.4 L370.2,264.8 L370.9,263.3 L371.5,261.7 L372.1,260.1 L372.8,258.4
|
||||
L373.4,256.7 L374.1,255.0 L374.7,253.2 L375.3,251.4 L376.0,249.6 L376.6,247.7 L377.2,245.8 L377.9,243.8
|
||||
L378.5,241.8 L379.2,239.8 L379.8,237.7 L380.4,235.6 L381.1,233.4 L381.7,231.2 L382.4,229.0 L383.0,226.7
|
||||
L383.6,224.4 L384.3,222.0 L384.9,219.5 L385.6,217.1 L386.2,214.5 L386.8,212.0 L387.5,209.3 L388.1,206.6
|
||||
L388.8,203.9 L389.4,201.1 L390.0,198.2 L390.7,195.3 L391.3,192.3 L392.0,189.3 L392.6,186.2 L393.2,183.1
|
||||
L393.9,179.9 L394.5,176.6 L395.1,173.2 L395.8,169.8 L396.4,166.3 L397.1,162.8 L397.7,159.1 L398.3,155.4
|
||||
L399.0,151.6 L399.6,147.8 L400.3,143.9 L400.9,139.9 L401.5,135.8 L402.2,131.6 L402.8,127.3 L403.5,123.0
|
||||
L404.1,118.6 L404.7,114.0 L405.4,109.4 L406.0,104.7 L406.7,99.9 L407.3,95.0 L407.9,90.0 L408.6,84.9
|
||||
L409.2,79.7 L409.9,74.4 L410.5,69.0 L411.1,63.5 L411.8,57.8 L412.4,52.1 L413.0,46.2 L413.7,52.1
|
||||
L414.3,57.8 L415.0,63.5 L415.6,69.0 L416.2,74.4 L416.9,79.7 L417.5,84.9 L418.2,90.0 L418.8,95.0
|
||||
L419.4,99.9 L420.1,104.7 L420.7,109.4 L421.4,114.0 L422.0,118.6 L422.6,123.0 L423.3,127.3 L423.9,131.6
|
||||
L424.6,135.8 L425.2,139.9 L425.8,143.9 L426.5,147.8 L427.1,151.6 L427.8,155.4 L428.4,159.1 L429.0,162.8
|
||||
L429.7,166.3 L430.3,169.8 L431.0,173.2 L431.6,176.6 L432.2,179.9 L432.9,183.1 L433.5,186.2 L434.1,189.3
|
||||
L434.8,192.3 L435.4,195.3 L436.1,198.2 L436.7,201.1 L437.3,203.9 L438.0,206.6 L438.6,209.3 L439.3,212.0
|
||||
L439.9,214.5 L440.5,217.1 L441.2,219.5 L441.8,222.0 L442.5,224.4 L443.1,226.7 L443.7,229.0 L444.4,231.2
|
||||
L445.0,233.4 L445.7,235.6 L446.3,237.7 L446.9,239.8 L447.6,241.8 L448.2,243.8 L448.9,245.8 L449.5,247.7
|
||||
L450.1,249.6 L450.8,251.4 L451.4,253.2 L452.0,255.0 L452.7,256.7 L453.3,258.4 L454.0,260.1 L454.6,261.7
|
||||
L455.2,263.3 L455.9,264.8 L456.5,266.4 L457.2,267.9 L457.8,269.4 L458.4,270.8 L459.1,272.2 L459.7,273.6
|
||||
L460.4,275.0 L461.0,276.3 L461.6,277.6 L462.3,278.9 L462.9,280.2 L463.6,281.4 L464.2,282.6 L464.8,283.8
|
||||
L465.5,284.9 L466.1,286.1 L466.8,287.2 L467.4,288.3 L468.0,289.4 L468.7,290.4 L469.3,291.4 L469.9,292.5
|
||||
L470.6,293.4 L471.2,294.4 L471.9,295.4 L472.5,296.3 L473.1,297.2 L473.8,298.1 L474.4,299.0 L475.1,299.8
|
||||
L475.7,300.7 L476.3,301.5 L477.0,302.3 L477.6,303.1 L478.3,303.9 L478.9,304.7 L479.5,305.4 L480.2,306.1
|
||||
L480.8,306.8 L481.5,307.6 L482.1,308.2 L482.7,308.9 L483.4,309.6 L484.0,310.2 L484.7,310.9 L485.3,311.5
|
||||
L485.9,312.1 L486.6,312.7 L487.2,313.3 L487.8,313.9 L488.5,314.4 L489.1,315.0 L489.8,315.5 L490.4,316.1
|
||||
L491.0,316.6 L491.7,317.1 L492.3,317.6 L493.0,318.1 L493.6,318.6 L494.2,319.0 L494.9,319.5 L495.5,320.0
|
||||
L496.2,320.4 L496.8,320.8 L497.4,321.3 L498.1,321.7 L498.7,322.1 L499.4,322.5 L500.0,322.9 L500.6,323.3
|
||||
L501.3,323.7 L501.9,324.0 L502.6,324.4 L503.2,324.7 L503.8,325.1 L504.5,325.4 L505.1,325.8 L505.7,326.1
|
||||
L506.4,326.4 L507.0,326.7 L507.7,327.1 L508.3,327.4 L508.9,327.7 L509.6,327.9 L510.2,328.2 L510.9,328.5
|
||||
L511.5,328.8 L512.1,329.1 L512.8,329.3 L513.4,329.6 L514.1,329.8 L514.7,330.1 L515.3,330.3 L516.0,330.6
|
||||
L516.6,330.8 L517.3,331.0 L517.9,331.3 L518.5,331.5 L519.2,331.7 L519.8,331.9 L520.5,332.1 L521.1,332.3
|
||||
L521.7,332.5 L522.4,332.7 L523.0,332.9 L523.6,333.1 L524.3,333.3 L524.9,333.5 L525.6,333.6 L526.2,333.8
|
||||
L526.8,334.0 L527.5,334.1 L528.1,334.3 L528.8,334.5 L529.4,334.6 L530.0,334.8 L530.7,334.9 L531.3,335.1
|
||||
L532.0,335.2 L532.6,335.4 L533.2,335.5 L533.9,335.6 L534.5,335.8 L535.2,335.9 L535.8,336.0 L536.4,336.2
|
||||
L537.1,336.3 L537.7,336.4 L538.4,336.5 L539.0,336.6 L539.6,336.8 L540.3,336.9 L540.9,337.0 L541.5,337.1
|
||||
L542.2,337.2 L542.8,337.3 L543.5,337.4 L544.1,337.5 L544.7,337.6 L545.4,337.7 L546.0,337.8 L546.7,337.9
|
||||
L547.3,338.0 L547.9,338.0 L548.6,338.1 L549.2,338.2 L549.9,338.3 L550.5,338.4 L551.1,338.5 L551.8,338.5
|
||||
L552.4,338.6 L553.1,338.7 L553.7,338.8 L554.3,338.8 L555.0,338.9 L555.6,339.0 L556.3,339.0 L556.9,339.1
|
||||
L557.5,339.2 L558.2,339.2 L558.8,339.3 L559.4,339.4 L560.1,339.4 L560.7,339.5 L561.4,339.5 L562.0,339.6
|
||||
L562.6,339.7 L563.3,339.7 L563.9,339.8 L564.6,339.8 L565.2,339.9 L565.8,339.9 L566.5,340.0 L567.1,340.0
|
||||
L567.8,340.1 L568.4,340.1 L569.0,340.1 L569.7,340.2 L570.3,340.2 L571.0,340.3 L571.6,340.3 L572.2,340.4
|
||||
L572.9,340.4 L573.5,340.4 L574.2,340.5 L574.8,340.5 L575.4,340.6 L576.1,340.6 L576.7,340.6 L577.4,340.7
|
||||
L578.0,340.7 L578.6,340.7 L579.3,340.8 L579.9,340.8 L580.5,340.8 L581.2,340.9 L581.8,340.9 L582.5,340.9
|
||||
L583.1,341.0 L583.7,341.0 L584.4,341.0 L585.0,341.0 L585.7,341.1 L586.3,341.1 L586.9,341.1 L587.6,341.1
|
||||
L588.2,341.2 L588.9,341.2 L589.5,341.2 L590.1,341.2 L590.8,341.3 L591.4,341.3 L592.1,341.3 L592.7,341.3
|
||||
L593.3,341.3 L594.0,341.4 L594.6,341.4 L595.3,341.4 L595.9,341.4 L596.5,341.4 L597.2,341.5 L597.8,341.5
|
||||
L598.4,341.5 L599.1,341.5 L599.7,341.5 L600.4,341.6 L601.0,341.6 L601.6,341.6 L602.3,341.6 L602.9,341.6
|
||||
L603.6,341.6 L604.2,341.7 L604.8,341.7 L605.5,341.7 L606.1,341.7 L606.8,341.7 L607.4,341.7 L608.0,341.7
|
||||
L608.7,341.7 L609.3,341.8 L610.0,341.8 L610.6,341.8 L611.2,341.8 L611.9,341.8 L612.5,341.8 L613.2,341.8
|
||||
L613.8,341.8 L614.4,341.9 L615.1,341.9 L615.7,341.9 L616.3,341.9 L617.0,341.9 L617.6,341.9 L618.3,341.9
|
||||
L618.9,341.9 L619.5,341.9 L620.2,341.9 L620.8,342.0 L621.5,342.0 L622.1,342.0 L622.7,342.0 L623.4,342.0
|
||||
L624.0,342.0 L624.7,342.0 L625.3,342.0 L625.9,342.0 L626.6,342.0 L627.2,342.0 L627.9,342.0 L628.5,342.0
|
||||
L629.1,342.1 L629.8,342.1 L630.4,342.1 L631.1,342.1 L631.7,342.1 L632.3,342.1 L633.0,342.1 L633.6,342.1
|
||||
L634.2,342.1 L634.9,342.1 L635.5,342.1 L636.2,342.1 L636.8,342.1 L637.4,342.1 L638.1,342.1 L638.7,342.1
|
||||
L639.4,342.2 L640.0,342.2 L640.6,342.2 L641.3,342.2 L641.9,342.2 L642.6,342.2 L643.2,342.2 L643.8,342.2
|
||||
L644.5,342.2 L645.1,342.2 L645.8,342.2 L646.4,342.2 L647.0,342.2 L647.7,342.2 L648.3,342.2 L649.0,342.2
|
||||
L649.6,342.2 L650.2,342.2 L650.9,342.2 L651.5,342.2 L652.1,342.2 L652.8,342.2 L653.4,342.2 L654.1,342.2
|
||||
L654.7,342.2 L655.3,342.2 L656.0,342.3 L656.6,342.3 L657.3,342.3 L657.9,342.3 L658.5,342.3 L659.2,342.3
|
||||
L659.8,342.3 L660.5,342.3 L661.1,342.3 L661.7,342.3 L662.4,342.3 L663.0,342.3 L663.7,342.3 L664.3,342.3
|
||||
L664.9,342.3 L665.6,342.3 L666.2,342.3 L666.9,342.3 L667.5,342.3 L668.1,342.3 L668.8,342.3 L669.4,342.3
|
||||
L670.0,342.3 L670.7,342.3 L671.3,342.3 L672.0,342.3 L672.6,342.3 L673.2,342.3 L673.9,342.3 L674.5,342.3
|
||||
L675.2,342.3 L675.8,342.3 L676.4,342.3 L677.1,342.3 L677.7,342.3 L678.4,342.3 L679.0,342.3 L679.6,342.3
|
||||
L680.3,342.3 L680.9,342.3 L681.6,342.3 L682.2,342.3 L682.8,342.3 L683.5,342.3 L684.1,342.3 L684.8,342.3
|
||||
L685.4,342.3 L686.0,342.3 L686.7,342.3 L687.3,342.3 L687.9,342.3 L688.6,342.3 L689.2,342.3 L689.9,342.3
|
||||
L690.5,342.3 L691.1,342.4 L691.8,342.4 L692.4,342.4 L693.1,342.4 L693.7,342.4 L694.3,342.4 L695.0,342.4
|
||||
L695.6,342.4 L696.3,342.4 L696.9,342.4 L697.5,342.4 L698.2,342.4 L698.8,342.4 L699.5,342.4 L700.1,342.4
|
||||
L700.7,342.4 L701.4,342.4 L702.0,342.4 L702.7,342.4 L703.3,342.4 L703.9,342.4 L704.6,342.4 L705.2,342.4
|
||||
L705.8,342.4 L706.5,342.4 L707.1,342.4 L707.8,342.4 L708.4,342.4 L709.0,342.4 L709.7,342.4 L710.3,342.4
|
||||
L711.0,342.4 L711.6,342.4 L712.2,342.4 L712.9,342.4 L713.5,342.4 L714.2,342.4 L714.8,342.4 L715.4,342.4
|
||||
L716.1,342.4 L716.7,342.4 L717.4,342.4 L718.0,342.4 L718.6,342.4 L719.3,342.4 L719.9,342.4 L720.6,342.4
|
||||
L721.2,342.4 L721.8,342.4 L722.5,342.4 L723.1,342.4 L723.7,342.4 L724.4,342.4 L725.0,342.4 L725.7,342.4
|
||||
L726.3,342.4 L726.9,342.4 L727.6,342.4 L728.2,342.4 L728.9,342.4 L729.5,342.4 L730.1,342.4 L730.8,342.4
|
||||
L731.4,342.4 L732.1,342.4 L732.7,342.4 '></path>
|
||||
</g>
|
||||
<g style="fill:none; color:green; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
</g>
|
||||
<g style="fill:none; color:black; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<g transform="translate(665.6,57.1)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan>μ = 0, σ = 2</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
<g style="fill:none; color:green; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<path d='M673.9,52.6 L716.1,52.6 M93.4,341.4 L94.0,341.4 L94.7,341.4 L95.3,341.4 L96.0,341.4 L96.6,341.4
|
||||
L97.2,341.3 L97.9,341.3 L98.5,341.3 L99.2,341.3 L99.8,341.3 L100.4,341.3 L101.1,341.3 L101.7,341.3
|
||||
L102.4,341.3 L103.0,341.2 L103.6,341.2 L104.3,341.2 L104.9,341.2 L105.5,341.2 L106.2,341.2 L106.8,341.2
|
||||
L107.5,341.2 L108.1,341.1 L108.7,341.1 L109.4,341.1 L110.0,341.1 L110.7,341.1 L111.3,341.1 L111.9,341.1
|
||||
L112.6,341.1 L113.2,341.0 L113.9,341.0 L114.5,341.0 L115.1,341.0 L115.8,341.0 L116.4,341.0 L117.1,341.0
|
||||
L117.7,340.9 L118.3,340.9 L119.0,340.9 L119.6,340.9 L120.3,340.9 L120.9,340.9 L121.5,340.9 L122.2,340.8
|
||||
L122.8,340.8 L123.4,340.8 L124.1,340.8 L124.7,340.8 L125.4,340.8 L126.0,340.7 L126.6,340.7 L127.3,340.7
|
||||
L127.9,340.7 L128.6,340.7 L129.2,340.7 L129.8,340.6 L130.5,340.6 L131.1,340.6 L131.8,340.6 L132.4,340.6
|
||||
L133.0,340.5 L133.7,340.5 L134.3,340.5 L135.0,340.5 L135.6,340.5 L136.2,340.5 L136.9,340.4 L137.5,340.4
|
||||
L138.2,340.4 L138.8,340.4 L139.4,340.4 L140.1,340.3 L140.7,340.3 L141.3,340.3 L142.0,340.3 L142.6,340.2
|
||||
L143.3,340.2 L143.9,340.2 L144.5,340.2 L145.2,340.2 L145.8,340.1 L146.5,340.1 L147.1,340.1 L147.7,340.1
|
||||
L148.4,340.0 L149.0,340.0 L149.7,340.0 L150.3,340.0 L150.9,339.9 L151.6,339.9 L152.2,339.9 L152.9,339.9
|
||||
L153.5,339.8 L154.1,339.8 L154.8,339.8 L155.4,339.8 L156.1,339.7 L156.7,339.7 L157.3,339.7 L158.0,339.7
|
||||
L158.6,339.6 L159.2,339.6 L159.9,339.6 L160.5,339.5 L161.2,339.5 L161.8,339.5 L162.4,339.5 L163.1,339.4
|
||||
L163.7,339.4 L164.4,339.4 L165.0,339.3 L165.6,339.3 L166.3,339.3 L166.9,339.2 L167.6,339.2 L168.2,339.2
|
||||
L168.8,339.2 L169.5,339.1 L170.1,339.1 L170.8,339.1 L171.4,339.0 L172.0,339.0 L172.7,339.0 L173.3,338.9
|
||||
L174.0,338.9 L174.6,338.8 L175.2,338.8 L175.9,338.8 L176.5,338.7 L177.1,338.7 L177.8,338.7 L178.4,338.6
|
||||
L179.1,338.6 L179.7,338.6 L180.3,338.5 L181.0,338.5 L181.6,338.4 L182.3,338.4 L182.9,338.4 L183.5,338.3
|
||||
L184.2,338.3 L184.8,338.2 L185.5,338.2 L186.1,338.1 L186.7,338.1 L187.4,338.1 L188.0,338.0 L188.7,338.0
|
||||
L189.3,337.9 L189.9,337.9 L190.6,337.8 L191.2,337.8 L191.9,337.7 L192.5,337.7 L193.1,337.7 L193.8,337.6
|
||||
L194.4,337.6 L195.0,337.5 L195.7,337.5 L196.3,337.4 L197.0,337.4 L197.6,337.3 L198.2,337.3 L198.9,337.2
|
||||
L199.5,337.2 L200.2,337.1 L200.8,337.0 L201.4,337.0 L202.1,336.9 L202.7,336.9 L203.4,336.8 L204.0,336.8
|
||||
L204.6,336.7 L205.3,336.7 L205.9,336.6 L206.6,336.5 L207.2,336.5 L207.8,336.4 L208.5,336.4 L209.1,336.3
|
||||
L209.8,336.2 L210.4,336.2 L211.0,336.1 L211.7,336.1 L212.3,336.0 L212.9,335.9 L213.6,335.9 L214.2,335.8
|
||||
L214.9,335.7 L215.5,335.7 L216.1,335.6 L216.8,335.5 L217.4,335.5 L218.1,335.4 L218.7,335.3 L219.3,335.2
|
||||
L220.0,335.2 L220.6,335.1 L221.3,335.0 L221.9,335.0 L222.5,334.9 L223.2,334.8 L223.8,334.7 L224.5,334.6
|
||||
L225.1,334.6 L225.7,334.5 L226.4,334.4 L227.0,334.3 L227.7,334.3 L228.3,334.2 L228.9,334.1 L229.6,334.0
|
||||
L230.2,333.9 L230.8,333.8 L231.5,333.7 L232.1,333.7 L232.8,333.6 L233.4,333.5 L234.0,333.4 L234.7,333.3
|
||||
L235.3,333.2 L236.0,333.1 L236.6,333.0 L237.2,332.9 L237.9,332.8 L238.5,332.7 L239.2,332.6 L239.8,332.5
|
||||
L240.4,332.4 L241.1,332.3 L241.7,332.2 L242.4,332.1 L243.0,332.0 L243.6,331.9 L244.3,331.8 L244.9,331.7
|
||||
L245.6,331.6 L246.2,331.5 L246.8,331.4 L247.5,331.3 L248.1,331.2 L248.7,331.1 L249.4,331.0 L250.0,330.8
|
||||
L250.7,330.7 L251.3,330.6 L251.9,330.5 L252.6,330.4 L253.2,330.2 L253.9,330.1 L254.5,330.0 L255.1,329.9
|
||||
L255.8,329.7 L256.4,329.6 L257.1,329.5 L257.7,329.4 L258.3,329.2 L259.0,329.1 L259.6,329.0 L260.3,328.8
|
||||
L260.9,328.7 L261.5,328.6 L262.2,328.4 L262.8,328.3 L263.5,328.1 L264.1,328.0 L264.7,327.8 L265.4,327.7
|
||||
L266.0,327.6 L266.7,327.4 L267.3,327.3 L267.9,327.1 L268.6,326.9 L269.2,326.8 L269.8,326.6 L270.5,326.5
|
||||
L271.1,326.3 L271.8,326.2 L272.4,326.0 L273.0,325.8 L273.7,325.7 L274.3,325.5 L275.0,325.3 L275.6,325.1
|
||||
L276.2,325.0 L276.9,324.8 L277.5,324.6 L278.2,324.4 L278.8,324.3 L279.4,324.1 L280.1,323.9 L280.7,323.7
|
||||
L281.4,323.5 L282.0,323.3 L282.6,323.1 L283.3,323.0 L283.9,322.8 L284.6,322.6 L285.2,322.4 L285.8,322.2
|
||||
L286.5,322.0 L287.1,321.7 L287.7,321.5 L288.4,321.3 L289.0,321.1 L289.7,320.9 L290.3,320.7 L290.9,320.5
|
||||
L291.6,320.3 L292.2,320.0 L292.9,319.8 L293.5,319.6 L294.1,319.3 L294.8,319.1 L295.4,318.9 L296.1,318.6
|
||||
L296.7,318.4 L297.3,318.2 L298.0,317.9 L298.6,317.7 L299.3,317.4 L299.9,317.2 L300.5,316.9 L301.2,316.7
|
||||
L301.8,316.4 L302.5,316.1 L303.1,315.9 L303.7,315.6 L304.4,315.3 L305.0,315.1 L305.6,314.8 L306.3,314.5
|
||||
L306.9,314.2 L307.6,314.0 L308.2,313.7 L308.8,313.4 L309.5,313.1 L310.1,312.8 L310.8,312.5 L311.4,312.2
|
||||
L312.0,311.9 L312.7,311.6 L313.3,311.3 L314.0,311.0 L314.6,310.7 L315.2,310.3 L315.9,310.0 L316.5,309.7
|
||||
L317.2,309.4 L317.8,309.0 L318.4,308.7 L319.1,308.4 L319.7,308.0 L320.4,307.7 L321.0,307.3 L321.6,307.0
|
||||
L322.3,306.6 L322.9,306.2 L323.5,305.9 L324.2,305.5 L324.8,305.1 L325.5,304.8 L326.1,304.4 L326.7,304.0
|
||||
L327.4,303.6 L328.0,303.2 L328.7,302.8 L329.3,302.4 L329.9,302.0 L330.6,301.6 L331.2,301.2 L331.9,300.8
|
||||
L332.5,300.4 L333.1,300.0 L333.8,299.5 L334.4,299.1 L335.1,298.7 L335.7,298.2 L336.3,297.8 L337.0,297.3
|
||||
L337.6,296.9 L338.3,296.4 L338.9,296.0 L339.5,295.5 L340.2,295.0 L340.8,294.6 L341.4,294.1 L342.1,293.6
|
||||
L342.7,293.1 L343.4,292.6 L344.0,292.1 L344.6,291.6 L345.3,291.1 L345.9,290.6 L346.6,290.1 L347.2,289.5
|
||||
L347.8,289.0 L348.5,288.5 L349.1,287.9 L349.8,287.4 L350.4,286.8 L351.0,286.3 L351.7,285.7 L352.3,285.1
|
||||
L353.0,284.6 L353.6,284.0 L354.2,283.4 L354.9,282.8 L355.5,282.2 L356.2,281.6 L356.8,281.0 L357.4,280.4
|
||||
L358.1,279.7 L358.7,279.1 L359.3,278.5 L360.0,277.8 L360.6,277.2 L361.3,276.5 L361.9,275.9 L362.5,275.2
|
||||
L363.2,274.5 L363.8,273.8 L364.5,273.1 L365.1,272.4 L365.7,271.7 L366.4,271.0 L367.0,270.3 L367.7,269.6
|
||||
L368.3,268.9 L368.9,268.1 L369.6,267.4 L370.2,266.6 L370.9,265.9 L371.5,265.1 L372.1,264.3 L372.8,263.5
|
||||
L373.4,262.7 L374.1,261.9 L374.7,261.1 L375.3,260.3 L376.0,259.5 L376.6,258.7 L377.2,257.8 L377.9,257.0
|
||||
L378.5,256.1 L379.2,255.2 L379.8,254.4 L380.4,253.5 L381.1,252.6 L381.7,251.7 L382.4,250.8 L383.0,249.8
|
||||
L383.6,248.9 L384.3,248.0 L384.9,247.0 L385.6,246.1 L386.2,245.1 L386.8,244.1 L387.5,243.1 L388.1,242.1
|
||||
L388.8,241.1 L389.4,240.1 L390.0,239.1 L390.7,238.0 L391.3,237.0 L392.0,235.9 L392.6,234.9 L393.2,233.8
|
||||
L393.9,232.7 L394.5,231.6 L395.1,230.5 L395.8,229.4 L396.4,228.2 L397.1,227.1 L397.7,225.9 L398.3,224.7
|
||||
L399.0,223.6 L399.6,222.4 L400.3,221.2 L400.9,219.9 L401.5,218.7 L402.2,217.5 L402.8,216.2 L403.5,214.9
|
||||
L404.1,213.7 L404.7,212.4 L405.4,211.1 L406.0,209.7 L406.7,208.4 L407.3,207.1 L407.9,205.7 L408.6,204.3
|
||||
L409.2,202.9 L409.9,201.5 L410.5,200.1 L411.1,198.7 L411.8,197.2 L412.4,195.8 L413.0,194.3 L413.7,195.8
|
||||
L414.3,197.2 L415.0,198.7 L415.6,200.1 L416.2,201.5 L416.9,202.9 L417.5,204.3 L418.2,205.7 L418.8,207.1
|
||||
L419.4,208.4 L420.1,209.7 L420.7,211.1 L421.4,212.4 L422.0,213.7 L422.6,214.9 L423.3,216.2 L423.9,217.5
|
||||
L424.6,218.7 L425.2,219.9 L425.8,221.2 L426.5,222.4 L427.1,223.6 L427.8,224.7 L428.4,225.9 L429.0,227.1
|
||||
L429.7,228.2 L430.3,229.4 L431.0,230.5 L431.6,231.6 L432.2,232.7 L432.9,233.8 L433.5,234.9 L434.1,235.9
|
||||
L434.8,237.0 L435.4,238.0 L436.1,239.1 L436.7,240.1 L437.3,241.1 L438.0,242.1 L438.6,243.1 L439.3,244.1
|
||||
L439.9,245.1 L440.5,246.1 L441.2,247.0 L441.8,248.0 L442.5,248.9 L443.1,249.8 L443.7,250.8 L444.4,251.7
|
||||
L445.0,252.6 L445.7,253.5 L446.3,254.4 L446.9,255.2 L447.6,256.1 L448.2,257.0 L448.9,257.8 L449.5,258.7
|
||||
L450.1,259.5 L450.8,260.3 L451.4,261.1 L452.0,261.9 L452.7,262.7 L453.3,263.5 L454.0,264.3 L454.6,265.1
|
||||
L455.2,265.9 L455.9,266.6 L456.5,267.4 L457.2,268.1 L457.8,268.9 L458.4,269.6 L459.1,270.3 L459.7,271.0
|
||||
L460.4,271.7 L461.0,272.4 L461.6,273.1 L462.3,273.8 L462.9,274.5 L463.6,275.2 L464.2,275.9 L464.8,276.5
|
||||
L465.5,277.2 L466.1,277.8 L466.8,278.5 L467.4,279.1 L468.0,279.7 L468.7,280.4 L469.3,281.0 L469.9,281.6
|
||||
L470.6,282.2 L471.2,282.8 L471.9,283.4 L472.5,284.0 L473.1,284.6 L473.8,285.1 L474.4,285.7 L475.1,286.3
|
||||
L475.7,286.8 L476.3,287.4 L477.0,287.9 L477.6,288.5 L478.3,289.0 L478.9,289.5 L479.5,290.1 L480.2,290.6
|
||||
L480.8,291.1 L481.5,291.6 L482.1,292.1 L482.7,292.6 L483.4,293.1 L484.0,293.6 L484.7,294.1 L485.3,294.6
|
||||
L485.9,295.0 L486.6,295.5 L487.2,296.0 L487.8,296.4 L488.5,296.9 L489.1,297.3 L489.8,297.8 L490.4,298.2
|
||||
L491.0,298.7 L491.7,299.1 L492.3,299.5 L493.0,300.0 L493.6,300.4 L494.2,300.8 L494.9,301.2 L495.5,301.6
|
||||
L496.2,302.0 L496.8,302.4 L497.4,302.8 L498.1,303.2 L498.7,303.6 L499.4,304.0 L500.0,304.4 L500.6,304.8
|
||||
L501.3,305.1 L501.9,305.5 L502.6,305.9 L503.2,306.2 L503.8,306.6 L504.5,307.0 L505.1,307.3 L505.7,307.7
|
||||
L506.4,308.0 L507.0,308.4 L507.7,308.7 L508.3,309.0 L508.9,309.4 L509.6,309.7 L510.2,310.0 L510.9,310.3
|
||||
L511.5,310.7 L512.1,311.0 L512.8,311.3 L513.4,311.6 L514.1,311.9 L514.7,312.2 L515.3,312.5 L516.0,312.8
|
||||
L516.6,313.1 L517.3,313.4 L517.9,313.7 L518.5,314.0 L519.2,314.2 L519.8,314.5 L520.5,314.8 L521.1,315.1
|
||||
L521.7,315.3 L522.4,315.6 L523.0,315.9 L523.6,316.1 L524.3,316.4 L524.9,316.7 L525.6,316.9 L526.2,317.2
|
||||
L526.8,317.4 L527.5,317.7 L528.1,317.9 L528.8,318.2 L529.4,318.4 L530.0,318.6 L530.7,318.9 L531.3,319.1
|
||||
L532.0,319.3 L532.6,319.6 L533.2,319.8 L533.9,320.0 L534.5,320.3 L535.2,320.5 L535.8,320.7 L536.4,320.9
|
||||
L537.1,321.1 L537.7,321.3 L538.4,321.5 L539.0,321.7 L539.6,322.0 L540.3,322.2 L540.9,322.4 L541.5,322.6
|
||||
L542.2,322.8 L542.8,323.0 L543.5,323.1 L544.1,323.3 L544.7,323.5 L545.4,323.7 L546.0,323.9 L546.7,324.1
|
||||
L547.3,324.3 L547.9,324.4 L548.6,324.6 L549.2,324.8 L549.9,325.0 L550.5,325.1 L551.1,325.3 L551.8,325.5
|
||||
L552.4,325.7 L553.1,325.8 L553.7,326.0 L554.3,326.2 L555.0,326.3 L555.6,326.5 L556.3,326.6 L556.9,326.8
|
||||
L557.5,326.9 L558.2,327.1 L558.8,327.3 L559.4,327.4 L560.1,327.6 L560.7,327.7 L561.4,327.8 L562.0,328.0
|
||||
L562.6,328.1 L563.3,328.3 L563.9,328.4 L564.6,328.6 L565.2,328.7 L565.8,328.8 L566.5,329.0 L567.1,329.1
|
||||
L567.8,329.2 L568.4,329.4 L569.0,329.5 L569.7,329.6 L570.3,329.7 L571.0,329.9 L571.6,330.0 L572.2,330.1
|
||||
L572.9,330.2 L573.5,330.4 L574.2,330.5 L574.8,330.6 L575.4,330.7 L576.1,330.8 L576.7,331.0 L577.4,331.1
|
||||
L578.0,331.2 L578.6,331.3 L579.3,331.4 L579.9,331.5 L580.5,331.6 L581.2,331.7 L581.8,331.8 L582.5,331.9
|
||||
L583.1,332.0 L583.7,332.1 L584.4,332.2 L585.0,332.3 L585.7,332.4 L586.3,332.5 L586.9,332.6 L587.6,332.7
|
||||
L588.2,332.8 L588.9,332.9 L589.5,333.0 L590.1,333.1 L590.8,333.2 L591.4,333.3 L592.1,333.4 L592.7,333.5
|
||||
L593.3,333.6 L594.0,333.7 L594.6,333.7 L595.3,333.8 L595.9,333.9 L596.5,334.0 L597.2,334.1 L597.8,334.2
|
||||
L598.4,334.3 L599.1,334.3 L599.7,334.4 L600.4,334.5 L601.0,334.6 L601.6,334.6 L602.3,334.7 L602.9,334.8
|
||||
L603.6,334.9 L604.2,335.0 L604.8,335.0 L605.5,335.1 L606.1,335.2 L606.8,335.2 L607.4,335.3 L608.0,335.4
|
||||
L608.7,335.5 L609.3,335.5 L610.0,335.6 L610.6,335.7 L611.2,335.7 L611.9,335.8 L612.5,335.9 L613.2,335.9
|
||||
L613.8,336.0 L614.4,336.1 L615.1,336.1 L615.7,336.2 L616.3,336.2 L617.0,336.3 L617.6,336.4 L618.3,336.4
|
||||
L618.9,336.5 L619.5,336.5 L620.2,336.6 L620.8,336.7 L621.5,336.7 L622.1,336.8 L622.7,336.8 L623.4,336.9
|
||||
L624.0,336.9 L624.7,337.0 L625.3,337.0 L625.9,337.1 L626.6,337.2 L627.2,337.2 L627.9,337.3 L628.5,337.3
|
||||
L629.1,337.4 L629.8,337.4 L630.4,337.5 L631.1,337.5 L631.7,337.6 L632.3,337.6 L633.0,337.7 L633.6,337.7
|
||||
L634.2,337.7 L634.9,337.8 L635.5,337.8 L636.2,337.9 L636.8,337.9 L637.4,338.0 L638.1,338.0 L638.7,338.1
|
||||
L639.4,338.1 L640.0,338.1 L640.6,338.2 L641.3,338.2 L641.9,338.3 L642.6,338.3 L643.2,338.4 L643.8,338.4
|
||||
L644.5,338.4 L645.1,338.5 L645.8,338.5 L646.4,338.6 L647.0,338.6 L647.7,338.6 L648.3,338.7 L649.0,338.7
|
||||
L649.6,338.7 L650.2,338.8 L650.9,338.8 L651.5,338.8 L652.1,338.9 L652.8,338.9 L653.4,339.0 L654.1,339.0
|
||||
L654.7,339.0 L655.3,339.1 L656.0,339.1 L656.6,339.1 L657.3,339.2 L657.9,339.2 L658.5,339.2 L659.2,339.2
|
||||
L659.8,339.3 L660.5,339.3 L661.1,339.3 L661.7,339.4 L662.4,339.4 L663.0,339.4 L663.7,339.5 L664.3,339.5
|
||||
L664.9,339.5 L665.6,339.5 L666.2,339.6 L666.9,339.6 L667.5,339.6 L668.1,339.7 L668.8,339.7 L669.4,339.7
|
||||
L670.0,339.7 L670.7,339.8 L671.3,339.8 L672.0,339.8 L672.6,339.8 L673.2,339.9 L673.9,339.9 L674.5,339.9
|
||||
L675.2,339.9 L675.8,340.0 L676.4,340.0 L677.1,340.0 L677.7,340.0 L678.4,340.1 L679.0,340.1 L679.6,340.1
|
||||
L680.3,340.1 L680.9,340.2 L681.6,340.2 L682.2,340.2 L682.8,340.2 L683.5,340.2 L684.1,340.3 L684.8,340.3
|
||||
L685.4,340.3 L686.0,340.3 L686.7,340.4 L687.3,340.4 L687.9,340.4 L688.6,340.4 L689.2,340.4 L689.9,340.5
|
||||
L690.5,340.5 L691.1,340.5 L691.8,340.5 L692.4,340.5 L693.1,340.5 L693.7,340.6 L694.3,340.6 L695.0,340.6
|
||||
L695.6,340.6 L696.3,340.6 L696.9,340.7 L697.5,340.7 L698.2,340.7 L698.8,340.7 L699.5,340.7 L700.1,340.7
|
||||
L700.7,340.8 L701.4,340.8 L702.0,340.8 L702.7,340.8 L703.3,340.8 L703.9,340.8 L704.6,340.9 L705.2,340.9
|
||||
L705.8,340.9 L706.5,340.9 L707.1,340.9 L707.8,340.9 L708.4,340.9 L709.0,341.0 L709.7,341.0 L710.3,341.0
|
||||
L711.0,341.0 L711.6,341.0 L712.2,341.0 L712.9,341.0 L713.5,341.1 L714.2,341.1 L714.8,341.1 L715.4,341.1
|
||||
L716.1,341.1 L716.7,341.1 L717.4,341.1 L718.0,341.1 L718.6,341.2 L719.3,341.2 L719.9,341.2 L720.6,341.2
|
||||
L721.2,341.2 L721.8,341.2 L722.5,341.2 L723.1,341.2 L723.7,341.3 L724.4,341.3 L725.0,341.3 L725.7,341.3
|
||||
L726.3,341.3 L726.9,341.3 L727.6,341.3 L728.2,341.3 L728.9,341.3 L729.5,341.4 L730.1,341.4 L730.8,341.4
|
||||
L731.4,341.4 L732.1,341.4 L732.7,341.4 '></path>
|
||||
</g>
|
||||
<g style="fill:none; color:blue; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
</g>
|
||||
<g style="fill:none; color:black; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<g transform="translate(665.6,75.1)" style="stroke:none; fill:black; font-family:Arial; font-size:12.00pt; text-anchor:end">
|
||||
<text><tspan>μ = 0, σ = 5</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
<g style="fill:none; color:blue; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<path d='M673.9,70.6 L716.1,70.6 M93.4,334.4 L94.0,334.4 L94.7,334.3 L95.3,334.3 L96.0,334.3 L96.6,334.2
|
||||
L97.2,334.2 L97.9,334.2 L98.5,334.1 L99.2,334.1 L99.8,334.1 L100.4,334.0 L101.1,334.0 L101.7,334.0
|
||||
L102.4,333.9 L103.0,333.9 L103.6,333.9 L104.3,333.8 L104.9,333.8 L105.5,333.8 L106.2,333.7 L106.8,333.7
|
||||
L107.5,333.6 L108.1,333.6 L108.7,333.6 L109.4,333.5 L110.0,333.5 L110.7,333.5 L111.3,333.4 L111.9,333.4
|
||||
L112.6,333.4 L113.2,333.3 L113.9,333.3 L114.5,333.3 L115.1,333.2 L115.8,333.2 L116.4,333.1 L117.1,333.1
|
||||
L117.7,333.1 L118.3,333.0 L119.0,333.0 L119.6,333.0 L120.3,332.9 L120.9,332.9 L121.5,332.8 L122.2,332.8
|
||||
L122.8,332.8 L123.4,332.7 L124.1,332.7 L124.7,332.6 L125.4,332.6 L126.0,332.6 L126.6,332.5 L127.3,332.5
|
||||
L127.9,332.5 L128.6,332.4 L129.2,332.4 L129.8,332.3 L130.5,332.3 L131.1,332.2 L131.8,332.2 L132.4,332.2
|
||||
L133.0,332.1 L133.7,332.1 L134.3,332.0 L135.0,332.0 L135.6,332.0 L136.2,331.9 L136.9,331.9 L137.5,331.8
|
||||
L138.2,331.8 L138.8,331.8 L139.4,331.7 L140.1,331.7 L140.7,331.6 L141.3,331.6 L142.0,331.5 L142.6,331.5
|
||||
L143.3,331.4 L143.9,331.4 L144.5,331.4 L145.2,331.3 L145.8,331.3 L146.5,331.2 L147.1,331.2 L147.7,331.1
|
||||
L148.4,331.1 L149.0,331.0 L149.7,331.0 L150.3,331.0 L150.9,330.9 L151.6,330.9 L152.2,330.8 L152.9,330.8
|
||||
L153.5,330.7 L154.1,330.7 L154.8,330.6 L155.4,330.6 L156.1,330.5 L156.7,330.5 L157.3,330.4 L158.0,330.4
|
||||
L158.6,330.3 L159.2,330.3 L159.9,330.2 L160.5,330.2 L161.2,330.1 L161.8,330.1 L162.4,330.1 L163.1,330.0
|
||||
L163.7,330.0 L164.4,329.9 L165.0,329.9 L165.6,329.8 L166.3,329.8 L166.9,329.7 L167.6,329.6 L168.2,329.6
|
||||
L168.8,329.5 L169.5,329.5 L170.1,329.4 L170.8,329.4 L171.4,329.3 L172.0,329.3 L172.7,329.2 L173.3,329.2
|
||||
L174.0,329.1 L174.6,329.1 L175.2,329.0 L175.9,329.0 L176.5,328.9 L177.1,328.9 L177.8,328.8 L178.4,328.8
|
||||
L179.1,328.7 L179.7,328.6 L180.3,328.6 L181.0,328.5 L181.6,328.5 L182.3,328.4 L182.9,328.4 L183.5,328.3
|
||||
L184.2,328.3 L184.8,328.2 L185.5,328.1 L186.1,328.1 L186.7,328.0 L187.4,328.0 L188.0,327.9 L188.7,327.9
|
||||
L189.3,327.8 L189.9,327.7 L190.6,327.7 L191.2,327.6 L191.9,327.6 L192.5,327.5 L193.1,327.4 L193.8,327.4
|
||||
L194.4,327.3 L195.0,327.3 L195.7,327.2 L196.3,327.1 L197.0,327.1 L197.6,327.0 L198.2,327.0 L198.9,326.9
|
||||
L199.5,326.8 L200.2,326.8 L200.8,326.7 L201.4,326.6 L202.1,326.6 L202.7,326.5 L203.4,326.4 L204.0,326.4
|
||||
L204.6,326.3 L205.3,326.3 L205.9,326.2 L206.6,326.1 L207.2,326.1 L207.8,326.0 L208.5,325.9 L209.1,325.9
|
||||
L209.8,325.8 L210.4,325.7 L211.0,325.7 L211.7,325.6 L212.3,325.5 L212.9,325.5 L213.6,325.4 L214.2,325.3
|
||||
L214.9,325.3 L215.5,325.2 L216.1,325.1 L216.8,325.1 L217.4,325.0 L218.1,324.9 L218.7,324.8 L219.3,324.8
|
||||
L220.0,324.7 L220.6,324.6 L221.3,324.6 L221.9,324.5 L222.5,324.4 L223.2,324.3 L223.8,324.3 L224.5,324.2
|
||||
L225.1,324.1 L225.7,324.1 L226.4,324.0 L227.0,323.9 L227.7,323.8 L228.3,323.8 L228.9,323.7 L229.6,323.6
|
||||
L230.2,323.5 L230.8,323.5 L231.5,323.4 L232.1,323.3 L232.8,323.2 L233.4,323.1 L234.0,323.1 L234.7,323.0
|
||||
L235.3,322.9 L236.0,322.8 L236.6,322.8 L237.2,322.7 L237.9,322.6 L238.5,322.5 L239.2,322.4 L239.8,322.4
|
||||
L240.4,322.3 L241.1,322.2 L241.7,322.1 L242.4,322.0 L243.0,322.0 L243.6,321.9 L244.3,321.8 L244.9,321.7
|
||||
L245.6,321.6 L246.2,321.5 L246.8,321.5 L247.5,321.4 L248.1,321.3 L248.7,321.2 L249.4,321.1 L250.0,321.0
|
||||
L250.7,321.0 L251.3,320.9 L251.9,320.8 L252.6,320.7 L253.2,320.6 L253.9,320.5 L254.5,320.4 L255.1,320.3
|
||||
L255.8,320.3 L256.4,320.2 L257.1,320.1 L257.7,320.0 L258.3,319.9 L259.0,319.8 L259.6,319.7 L260.3,319.6
|
||||
L260.9,319.5 L261.5,319.4 L262.2,319.4 L262.8,319.3 L263.5,319.2 L264.1,319.1 L264.7,319.0 L265.4,318.9
|
||||
L266.0,318.8 L266.7,318.7 L267.3,318.6 L267.9,318.5 L268.6,318.4 L269.2,318.3 L269.8,318.2 L270.5,318.1
|
||||
L271.1,318.0 L271.8,317.9 L272.4,317.8 L273.0,317.7 L273.7,317.6 L274.3,317.5 L275.0,317.4 L275.6,317.3
|
||||
L276.2,317.2 L276.9,317.1 L277.5,317.0 L278.2,316.9 L278.8,316.8 L279.4,316.7 L280.1,316.6 L280.7,316.5
|
||||
L281.4,316.4 L282.0,316.3 L282.6,316.2 L283.3,316.1 L283.9,316.0 L284.6,315.9 L285.2,315.8 L285.8,315.7
|
||||
L286.5,315.6 L287.1,315.5 L287.7,315.4 L288.4,315.2 L289.0,315.1 L289.7,315.0 L290.3,314.9 L290.9,314.8
|
||||
L291.6,314.7 L292.2,314.6 L292.9,314.5 L293.5,314.4 L294.1,314.3 L294.8,314.1 L295.4,314.0 L296.1,313.9
|
||||
L296.7,313.8 L297.3,313.7 L298.0,313.6 L298.6,313.5 L299.3,313.3 L299.9,313.2 L300.5,313.1 L301.2,313.0
|
||||
L301.8,312.9 L302.5,312.7 L303.1,312.6 L303.7,312.5 L304.4,312.4 L305.0,312.3 L305.6,312.1 L306.3,312.0
|
||||
L306.9,311.9 L307.6,311.8 L308.2,311.7 L308.8,311.5 L309.5,311.4 L310.1,311.3 L310.8,311.2 L311.4,311.0
|
||||
L312.0,310.9 L312.7,310.8 L313.3,310.7 L314.0,310.5 L314.6,310.4 L315.2,310.3 L315.9,310.1 L316.5,310.0
|
||||
L317.2,309.9 L317.8,309.8 L318.4,309.6 L319.1,309.5 L319.7,309.4 L320.4,309.2 L321.0,309.1 L321.6,309.0
|
||||
L322.3,308.8 L322.9,308.7 L323.5,308.6 L324.2,308.4 L324.8,308.3 L325.5,308.2 L326.1,308.0 L326.7,307.9
|
||||
L327.4,307.7 L328.0,307.6 L328.7,307.5 L329.3,307.3 L329.9,307.2 L330.6,307.0 L331.2,306.9 L331.9,306.8
|
||||
L332.5,306.6 L333.1,306.5 L333.8,306.3 L334.4,306.2 L335.1,306.0 L335.7,305.9 L336.3,305.7 L337.0,305.6
|
||||
L337.6,305.5 L338.3,305.3 L338.9,305.2 L339.5,305.0 L340.2,304.9 L340.8,304.7 L341.4,304.6 L342.1,304.4
|
||||
L342.7,304.2 L343.4,304.1 L344.0,303.9 L344.6,303.8 L345.3,303.6 L345.9,303.5 L346.6,303.3 L347.2,303.2
|
||||
L347.8,303.0 L348.5,302.9 L349.1,302.7 L349.8,302.5 L350.4,302.4 L351.0,302.2 L351.7,302.1 L352.3,301.9
|
||||
L353.0,301.7 L353.6,301.6 L354.2,301.4 L354.9,301.2 L355.5,301.1 L356.2,300.9 L356.8,300.7 L357.4,300.6
|
||||
L358.1,300.4 L358.7,300.2 L359.3,300.1 L360.0,299.9 L360.6,299.7 L361.3,299.6 L361.9,299.4 L362.5,299.2
|
||||
L363.2,299.0 L363.8,298.9 L364.5,298.7 L365.1,298.5 L365.7,298.3 L366.4,298.2 L367.0,298.0 L367.7,297.8
|
||||
L368.3,297.6 L368.9,297.5 L369.6,297.3 L370.2,297.1 L370.9,296.9 L371.5,296.7 L372.1,296.5 L372.8,296.4
|
||||
L373.4,296.2 L374.1,296.0 L374.7,295.8 L375.3,295.6 L376.0,295.4 L376.6,295.2 L377.2,295.1 L377.9,294.9
|
||||
L378.5,294.7 L379.2,294.5 L379.8,294.3 L380.4,294.1 L381.1,293.9 L381.7,293.7 L382.4,293.5 L383.0,293.3
|
||||
L383.6,293.1 L384.3,292.9 L384.9,292.7 L385.6,292.5 L386.2,292.3 L386.8,292.1 L387.5,291.9 L388.1,291.7
|
||||
L388.8,291.5 L389.4,291.3 L390.0,291.1 L390.7,290.9 L391.3,290.7 L392.0,290.5 L392.6,290.3 L393.2,290.1
|
||||
L393.9,289.9 L394.5,289.7 L395.1,289.4 L395.8,289.2 L396.4,289.0 L397.1,288.8 L397.7,288.6 L398.3,288.4
|
||||
L399.0,288.2 L399.6,287.9 L400.3,287.7 L400.9,287.5 L401.5,287.3 L402.2,287.1 L402.8,286.8 L403.5,286.6
|
||||
L404.1,286.4 L404.7,286.2 L405.4,285.9 L406.0,285.7 L406.7,285.5 L407.3,285.3 L407.9,285.0 L408.6,284.8
|
||||
L409.2,284.6 L409.9,284.3 L410.5,284.1 L411.1,283.9 L411.8,283.6 L412.4,283.4 L413.0,283.2 L413.7,283.4
|
||||
L414.3,283.6 L415.0,283.9 L415.6,284.1 L416.2,284.3 L416.9,284.6 L417.5,284.8 L418.2,285.0 L418.8,285.3
|
||||
L419.4,285.5 L420.1,285.7 L420.7,285.9 L421.4,286.2 L422.0,286.4 L422.6,286.6 L423.3,286.8 L423.9,287.1
|
||||
L424.6,287.3 L425.2,287.5 L425.8,287.7 L426.5,287.9 L427.1,288.2 L427.8,288.4 L428.4,288.6 L429.0,288.8
|
||||
L429.7,289.0 L430.3,289.2 L431.0,289.4 L431.6,289.7 L432.2,289.9 L432.9,290.1 L433.5,290.3 L434.1,290.5
|
||||
L434.8,290.7 L435.4,290.9 L436.1,291.1 L436.7,291.3 L437.3,291.5 L438.0,291.7 L438.6,291.9 L439.3,292.1
|
||||
L439.9,292.3 L440.5,292.5 L441.2,292.7 L441.8,292.9 L442.5,293.1 L443.1,293.3 L443.7,293.5 L444.4,293.7
|
||||
L445.0,293.9 L445.7,294.1 L446.3,294.3 L446.9,294.5 L447.6,294.7 L448.2,294.9 L448.9,295.1 L449.5,295.2
|
||||
L450.1,295.4 L450.8,295.6 L451.4,295.8 L452.0,296.0 L452.7,296.2 L453.3,296.4 L454.0,296.5 L454.6,296.7
|
||||
L455.2,296.9 L455.9,297.1 L456.5,297.3 L457.2,297.5 L457.8,297.6 L458.4,297.8 L459.1,298.0 L459.7,298.2
|
||||
L460.4,298.3 L461.0,298.5 L461.6,298.7 L462.3,298.9 L462.9,299.0 L463.6,299.2 L464.2,299.4 L464.8,299.6
|
||||
L465.5,299.7 L466.1,299.9 L466.8,300.1 L467.4,300.2 L468.0,300.4 L468.7,300.6 L469.3,300.7 L469.9,300.9
|
||||
L470.6,301.1 L471.2,301.2 L471.9,301.4 L472.5,301.6 L473.1,301.7 L473.8,301.9 L474.4,302.1 L475.1,302.2
|
||||
L475.7,302.4 L476.3,302.5 L477.0,302.7 L477.6,302.9 L478.3,303.0 L478.9,303.2 L479.5,303.3 L480.2,303.5
|
||||
L480.8,303.6 L481.5,303.8 L482.1,303.9 L482.7,304.1 L483.4,304.2 L484.0,304.4 L484.7,304.6 L485.3,304.7
|
||||
L485.9,304.9 L486.6,305.0 L487.2,305.2 L487.8,305.3 L488.5,305.5 L489.1,305.6 L489.8,305.7 L490.4,305.9
|
||||
L491.0,306.0 L491.7,306.2 L492.3,306.3 L493.0,306.5 L493.6,306.6 L494.2,306.8 L494.9,306.9 L495.5,307.0
|
||||
L496.2,307.2 L496.8,307.3 L497.4,307.5 L498.1,307.6 L498.7,307.7 L499.4,307.9 L500.0,308.0 L500.6,308.2
|
||||
L501.3,308.3 L501.9,308.4 L502.6,308.6 L503.2,308.7 L503.8,308.8 L504.5,309.0 L505.1,309.1 L505.7,309.2
|
||||
L506.4,309.4 L507.0,309.5 L507.7,309.6 L508.3,309.8 L508.9,309.9 L509.6,310.0 L510.2,310.1 L510.9,310.3
|
||||
L511.5,310.4 L512.1,310.5 L512.8,310.7 L513.4,310.8 L514.1,310.9 L514.7,311.0 L515.3,311.2 L516.0,311.3
|
||||
L516.6,311.4 L517.3,311.5 L517.9,311.7 L518.5,311.8 L519.2,311.9 L519.8,312.0 L520.5,312.1 L521.1,312.3
|
||||
L521.7,312.4 L522.4,312.5 L523.0,312.6 L523.6,312.7 L524.3,312.9 L524.9,313.0 L525.6,313.1 L526.2,313.2
|
||||
L526.8,313.3 L527.5,313.5 L528.1,313.6 L528.8,313.7 L529.4,313.8 L530.0,313.9 L530.7,314.0 L531.3,314.1
|
||||
L532.0,314.3 L532.6,314.4 L533.2,314.5 L533.9,314.6 L534.5,314.7 L535.2,314.8 L535.8,314.9 L536.4,315.0
|
||||
L537.1,315.1 L537.7,315.2 L538.4,315.4 L539.0,315.5 L539.6,315.6 L540.3,315.7 L540.9,315.8 L541.5,315.9
|
||||
L542.2,316.0 L542.8,316.1 L543.5,316.2 L544.1,316.3 L544.7,316.4 L545.4,316.5 L546.0,316.6 L546.7,316.7
|
||||
L547.3,316.8 L547.9,316.9 L548.6,317.0 L549.2,317.1 L549.9,317.2 L550.5,317.3 L551.1,317.4 L551.8,317.5
|
||||
L552.4,317.6 L553.1,317.7 L553.7,317.8 L554.3,317.9 L555.0,318.0 L555.6,318.1 L556.3,318.2 L556.9,318.3
|
||||
L557.5,318.4 L558.2,318.5 L558.8,318.6 L559.4,318.7 L560.1,318.8 L560.7,318.9 L561.4,319.0 L562.0,319.1
|
||||
L562.6,319.2 L563.3,319.3 L563.9,319.4 L564.6,319.4 L565.2,319.5 L565.8,319.6 L566.5,319.7 L567.1,319.8
|
||||
L567.8,319.9 L568.4,320.0 L569.0,320.1 L569.7,320.2 L570.3,320.3 L571.0,320.3 L571.6,320.4 L572.2,320.5
|
||||
L572.9,320.6 L573.5,320.7 L574.2,320.8 L574.8,320.9 L575.4,321.0 L576.1,321.0 L576.7,321.1 L577.4,321.2
|
||||
L578.0,321.3 L578.6,321.4 L579.3,321.5 L579.9,321.5 L580.5,321.6 L581.2,321.7 L581.8,321.8 L582.5,321.9
|
||||
L583.1,322.0 L583.7,322.0 L584.4,322.1 L585.0,322.2 L585.7,322.3 L586.3,322.4 L586.9,322.4 L587.6,322.5
|
||||
L588.2,322.6 L588.9,322.7 L589.5,322.8 L590.1,322.8 L590.8,322.9 L591.4,323.0 L592.1,323.1 L592.7,323.1
|
||||
L593.3,323.2 L594.0,323.3 L594.6,323.4 L595.3,323.5 L595.9,323.5 L596.5,323.6 L597.2,323.7 L597.8,323.8
|
||||
L598.4,323.8 L599.1,323.9 L599.7,324.0 L600.4,324.1 L601.0,324.1 L601.6,324.2 L602.3,324.3 L602.9,324.3
|
||||
L603.6,324.4 L604.2,324.5 L604.8,324.6 L605.5,324.6 L606.1,324.7 L606.8,324.8 L607.4,324.8 L608.0,324.9
|
||||
L608.7,325.0 L609.3,325.1 L610.0,325.1 L610.6,325.2 L611.2,325.3 L611.9,325.3 L612.5,325.4 L613.2,325.5
|
||||
L613.8,325.5 L614.4,325.6 L615.1,325.7 L615.7,325.7 L616.3,325.8 L617.0,325.9 L617.6,325.9 L618.3,326.0
|
||||
L618.9,326.1 L619.5,326.1 L620.2,326.2 L620.8,326.3 L621.5,326.3 L622.1,326.4 L622.7,326.4 L623.4,326.5
|
||||
L624.0,326.6 L624.7,326.6 L625.3,326.7 L625.9,326.8 L626.6,326.8 L627.2,326.9 L627.9,327.0 L628.5,327.0
|
||||
L629.1,327.1 L629.8,327.1 L630.4,327.2 L631.1,327.3 L631.7,327.3 L632.3,327.4 L633.0,327.4 L633.6,327.5
|
||||
L634.2,327.6 L634.9,327.6 L635.5,327.7 L636.2,327.7 L636.8,327.8 L637.4,327.9 L638.1,327.9 L638.7,328.0
|
||||
L639.4,328.0 L640.0,328.1 L640.6,328.1 L641.3,328.2 L641.9,328.3 L642.6,328.3 L643.2,328.4 L643.8,328.4
|
||||
L644.5,328.5 L645.1,328.5 L645.8,328.6 L646.4,328.6 L647.0,328.7 L647.7,328.8 L648.3,328.8 L649.0,328.9
|
||||
L649.6,328.9 L650.2,329.0 L650.9,329.0 L651.5,329.1 L652.1,329.1 L652.8,329.2 L653.4,329.2 L654.1,329.3
|
||||
L654.7,329.3 L655.3,329.4 L656.0,329.4 L656.6,329.5 L657.3,329.5 L657.9,329.6 L658.5,329.6 L659.2,329.7
|
||||
L659.8,329.8 L660.5,329.8 L661.1,329.9 L661.7,329.9 L662.4,330.0 L663.0,330.0 L663.7,330.1 L664.3,330.1
|
||||
L664.9,330.1 L665.6,330.2 L666.2,330.2 L666.9,330.3 L667.5,330.3 L668.1,330.4 L668.8,330.4 L669.4,330.5
|
||||
L670.0,330.5 L670.7,330.6 L671.3,330.6 L672.0,330.7 L672.6,330.7 L673.2,330.8 L673.9,330.8 L674.5,330.9
|
||||
L675.2,330.9 L675.8,331.0 L676.4,331.0 L677.1,331.0 L677.7,331.1 L678.4,331.1 L679.0,331.2 L679.6,331.2
|
||||
L680.3,331.3 L680.9,331.3 L681.6,331.4 L682.2,331.4 L682.8,331.4 L683.5,331.5 L684.1,331.5 L684.8,331.6
|
||||
L685.4,331.6 L686.0,331.7 L686.7,331.7 L687.3,331.8 L687.9,331.8 L688.6,331.8 L689.2,331.9 L689.9,331.9
|
||||
L690.5,332.0 L691.1,332.0 L691.8,332.0 L692.4,332.1 L693.1,332.1 L693.7,332.2 L694.3,332.2 L695.0,332.2
|
||||
L695.6,332.3 L696.3,332.3 L696.9,332.4 L697.5,332.4 L698.2,332.5 L698.8,332.5 L699.5,332.5 L700.1,332.6
|
||||
L700.7,332.6 L701.4,332.6 L702.0,332.7 L702.7,332.7 L703.3,332.8 L703.9,332.8 L704.6,332.8 L705.2,332.9
|
||||
L705.8,332.9 L706.5,333.0 L707.1,333.0 L707.8,333.0 L708.4,333.1 L709.0,333.1 L709.7,333.1 L710.3,333.2
|
||||
L711.0,333.2 L711.6,333.3 L712.2,333.3 L712.9,333.3 L713.5,333.4 L714.2,333.4 L714.8,333.4 L715.4,333.5
|
||||
L716.1,333.5 L716.7,333.5 L717.4,333.6 L718.0,333.6 L718.6,333.6 L719.3,333.7 L719.9,333.7 L720.6,333.8
|
||||
L721.2,333.8 L721.8,333.8 L722.5,333.9 L723.1,333.9 L723.7,333.9 L724.4,334.0 L725.0,334.0 L725.7,334.0
|
||||
L726.3,334.1 L726.9,334.1 L727.6,334.1 L728.2,334.2 L728.9,334.2 L729.5,334.2 L730.1,334.3 L730.8,334.3
|
||||
L731.4,334.3 L732.1,334.4 L732.7,334.4 '></path>
|
||||
</g>
|
||||
<g style="fill:none; color:black; stroke:currentColor; stroke-width:1.00; stroke-linecap:butt; stroke-linejoin:miter">
|
||||
<path d='M93.4,16.6 L93.4,342.4 L732.7,342.4 L732.7,16.6 L93.4,16.6 Z '></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 47 KiB |
BIN
doc/sf_and_dist/graphs/logistic_pdf.png
Normal file
|
After Width: | Height: | Size: 49 KiB |
67
doc/sf_and_dist/graphs/logistic_pdf.svg
Normal file
@@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="750" height ="400" version="1.1"
|
||||
xmlns:svg ="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns ="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) -->
|
||||
<!-- Use, modification and distribution of Boost.Plot subject to the -->
|
||||
<!-- Boost Software License, Version 1.0.-->
|
||||
<!-- (See accompanying file LICENSE_1_0.txt -->
|
||||
<!-- or copy at http://www.boost.org/LICENSE_1_0.txt) -->
|
||||
|
||||
<clipPath id="plot_window"><rect x="71.2" y="63" width="423.2" height="271.4"/></clipPath>
|
||||
<g id="imageBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="0" y="0" width="750" height="400"/></g>
|
||||
<g id="plotBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="70.2" y="62" width="425.2" height="273.4"/></g>
|
||||
<g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="yMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="xMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="xMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="yAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="282.8" y1="62" x2="282.8" y2="340.4"/><line x1="70.2" y1="62" x2="70.2" y2="335.4"/></g>
|
||||
<g id="xAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="65.2" y1="335.4" x2="495.4" y2="335.4"/><line x1="65.2" y1="335.4" x2="495.4" y2="335.4"/></g>
|
||||
<g id="yMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M68.2,325.5 L70.2,325.5 M68.2,315.5 L70.2,315.5 M68.2,305.6 L70.2,305.6 M68.2,295.6 L70.2,295.6 M68.2,275.7 L70.2,275.7 M68.2,265.8 L70.2,265.8 M68.2,255.9 L70.2,255.9 M68.2,245.9 L70.2,245.9 M68.2,226 L70.2,226 M68.2,216.1 L70.2,216.1 M68.2,206.2 L70.2,206.2 M68.2,196.2 L70.2,196.2 M68.2,176.3 L70.2,176.3 M68.2,166.4 L70.2,166.4 M68.2,156.4 L70.2,156.4 M68.2,146.5 L70.2,146.5 M68.2,126.6 L70.2,126.6 M68.2,116.7 L70.2,116.7 M68.2,106.7 L70.2,106.7 M68.2,96.8 L70.2,96.8 M68.2,76.91 L70.2,76.91 M68.2,66.97 L70.2,66.97 M68.2,335.4 L70.2,335.4 " fill="none"/></g>
|
||||
<g id="xMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M299,335.4 L299,337.4 M315.3,335.4 L315.3,337.4 M331.6,335.4 L331.6,337.4 M347.8,335.4 L347.8,337.4 M380.4,335.4 L380.4,337.4 M396.6,335.4 L396.6,337.4 M412.9,335.4 L412.9,337.4 M429.2,335.4 L429.2,337.4 M461.7,335.4 L461.7,337.4 M478,335.4 L478,337.4 M494.2,335.4 L494.2,337.4 M266.5,335.4 L266.5,337.4 M250.3,335.4 L250.3,337.4 M234,335.4 L234,337.4 M217.7,335.4 L217.7,337.4 M185.2,335.4 L185.2,337.4 M168.9,335.4 L168.9,337.4 M152.7,335.4 L152.7,337.4 M136.4,335.4 L136.4,337.4 M103.9,335.4 L103.9,337.4 M87.6,335.4 L87.6,337.4 M71.33,335.4 L71.33,337.4 " fill="none"/></g>
|
||||
<g id="yMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M65.2,335.4 L70.2,335.4 M65.2,285.7 L70.2,285.7 M65.2,236 L70.2,236 M65.2,186.3 L70.2,186.3 M65.2,136.6 L70.2,136.6 M65.2,86.85 L70.2,86.85 M65.2,335.4 L70.2,335.4 " fill="none"/></g>
|
||||
<g id="xMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M282.8,335.4 L282.8,340.4 M364.1,335.4 L364.1,340.4 M445.4,335.4 L445.4,340.4 M282.8,335.4 L282.8,340.4 M201.5,335.4 L201.5,340.4 M120.1,335.4 L120.1,340.4 " fill="none"/></g>
|
||||
<g id="plotLabels">
|
||||
<text x="282.8" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">0</text>
|
||||
<text x="364.1" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">5</text>
|
||||
<text x="445.4" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">10</text>
|
||||
<text x="282.8" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">0</text>
|
||||
<text x="201.5" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">-5</text>
|
||||
<text x="120.1" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">-10</text>
|
||||
<text x="59.2" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text>
|
||||
<text x="59.2" y="288.1" text-anchor="end" font-size="12" font-family="Verdana">0.1</text>
|
||||
<text x="59.2" y="238.4" text-anchor="end" font-size="12" font-family="Verdana">0.2</text>
|
||||
<text x="59.2" y="188.7" text-anchor="end" font-size="12" font-family="Verdana">0.3</text>
|
||||
<text x="59.2" y="139" text-anchor="end" font-size="12" font-family="Verdana">0.4</text>
|
||||
<text x="59.2" y="89.25" text-anchor="end" font-size="12" font-family="Verdana">0.5</text>
|
||||
<text x="59.2" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text></g>
|
||||
<g id="yLabel">
|
||||
<text x="30.2" y="198.7" text-anchor="middle" transform = "rotate(-90 30.2 198.7 )" font-size="14" font-family="Verdana">Probability</text></g>
|
||||
<g id="xLabel">
|
||||
<text x="282.8" y="388" text-anchor="middle" font-size="14" font-family="Verdana">Random Variable</text></g>
|
||||
<g id="plotLines" stroke-width="2"><g clip-path="url(#plot_window)" stroke="rgb(0,0,139)" stroke-width="1"><path d="M70.2,335.4 L72.33,335.4 L74.45,335.4 L76.58,335.4 L78.7,335.4 L80.83,335.4 L82.95,335.4 L85.08,335.4 L87.21,335.4 L89.33,335.4 L91.46,335.4 L93.58,335.4 L95.71,335.4 L97.84,335.4 L99.96,335.4 L102.1,335.4 L104.2,335.4 L106.3,335.4 L108.5,335.4 L110.6,335.4 L112.7,335.4 L114.8,335.4 L117,335.4 L119.1,335.4 L121.2,335.4 L123.3,335.4 L125.5,335.4 L127.6,335.4 L129.7,335.4 L131.8,335.4 L134,335.3 L136.1,335.3 L138.2,335.3 L140.4,335.3 L142.5,335.3 L144.6,335.3 L146.7,335.3 L148.9,335.3 L151,335.2 L153.1,335.2 L155.2,335.2 L157.4,335.2 L159.5,335.1 L161.6,335.1 L163.7,335.1 L165.9,335 L168,335 L170.1,334.9 L172.2,334.8 L174.4,334.8 L176.5,334.7 L178.6,334.6 L180.7,334.5 L182.9,334.3 L185,334.2 L187.1,334 L189.2,333.8 L191.4,333.6 L193.5,333.4 L195.6,333.1 L197.7,332.8 L199.9,332.4 L202,332 L204.1,331.5 L206.3,331 L208.4,330.4 L210.5,329.7 L212.6,328.9 L214.8,328 L216.9,327 L219,325.9 L221.1,324.7 L223.3,323.2 L225.4,321.6 L227.5,319.8 L229.6,317.8 L231.8,315.6 L233.9,313.1 L236,310.3 L238.1,307.2 L240.3,303.8 L242.4,300.1 L244.5,296 L246.6,291.5 L248.8,286.8 L250.9,281.6 L253,276.2 L255.1,270.4 L257.3,264.5 L259.4,258.3 L261.5,252.1 L263.6,245.8 L265.8,239.7 L267.9,233.9 L270,228.4 L272.2,223.5 L274.3,219.2 L276.4,215.8 L278.5,213.2 L280.7,211.7 L282.8,211.1 L284.9,211.7 L287,213.2 L289.2,215.8 L291.3,219.2 L293.4,223.5 L295.5,228.4 L297.7,233.9 L299.8,239.7 L301.9,245.8 L304,252.1 L306.2,258.3 L308.3,264.5 L310.4,270.4 L312.5,276.2 L314.7,281.6 L316.8,286.7 L318.9,291.5 L321,296 L323.2,300.1 L325.3,303.8 L327.4,307.2 L329.5,310.3 L331.7,313.1 L333.8,315.6 L335.9,317.8 L338.1,319.8 L340.2,321.6 L342.3,323.2 L344.4,324.7 L346.6,325.9 L348.7,327 L350.8,328 L352.9,328.9 L355.1,329.7 L357.2,330.4 L359.3,331 L361.4,331.5 L363.6,332 L365.7,332.4 L367.8,332.8 L369.9,333.1 L372.1,333.4 L374.2,333.6 L376.3,333.8 L378.4,334 L380.6,334.2 L382.7,334.3 L384.8,334.5 L386.9,334.6 L389.1,334.7 L391.2,334.8 L393.3,334.8 L395.4,334.9 L397.6,335 L399.7,335 L401.8,335.1 L404,335.1 L406.1,335.1 L408.2,335.2 L410.3,335.2 L412.5,335.2 L414.6,335.2 L416.7,335.3 L418.8,335.3 L421,335.3 L423.1,335.3 L425.2,335.3 L427.3,335.3 L429.5,335.3 L431.6,335.3 L433.7,335.4 L435.8,335.4 L438,335.4 L440.1,335.4 L442.2,335.4 L444.3,335.4 L446.5,335.4 L448.6,335.4 L450.7,335.4 L452.8,335.4 L455,335.4 L457.1,335.4 L459.2,335.4 L461.3,335.4 L463.5,335.4 L465.6,335.4 L467.7,335.4 L469.9,335.4 L472,335.4 L474.1,335.4 L476.2,335.4 L478.4,335.4 L480.5,335.4 L482.6,335.4 L484.7,335.4 L486.9,335.4 L489,335.4 L491.1,335.4 L493.2,335.4 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(139,0,0)" stroke-width="1"><path d="M70.2,333.3 L72.33,333.2 L74.45,333.1 L76.58,333 L78.7,332.9 L80.83,332.8 L82.95,332.7 L85.08,332.6 L87.21,332.5 L89.33,332.4 L91.46,332.2 L93.58,332.1 L95.71,332 L97.84,331.8 L99.96,331.7 L102.1,331.5 L104.2,331.3 L106.3,331.2 L108.5,331 L110.6,330.8 L112.7,330.6 L114.8,330.4 L117,330.2 L119.1,330 L121.2,329.8 L123.3,329.5 L125.5,329.3 L127.6,329.1 L129.7,328.8 L131.8,328.5 L134,328.2 L136.1,328 L138.2,327.7 L140.4,327.3 L142.5,327 L144.6,326.7 L146.7,326.4 L148.9,326 L151,325.6 L153.1,325.3 L155.2,324.9 L157.4,324.5 L159.5,324 L161.6,323.6 L163.7,323.2 L165.9,322.7 L168,322.3 L170.1,321.8 L172.2,321.3 L174.4,320.8 L176.5,320.3 L178.6,319.7 L180.7,319.2 L182.9,318.6 L185,318.1 L187.1,317.5 L189.2,316.9 L191.4,316.3 L193.5,315.7 L195.6,315 L197.7,314.4 L199.9,313.7 L202,313.1 L204.1,312.4 L206.3,311.8 L208.4,311.1 L210.5,310.4 L212.6,309.7 L214.8,309 L216.9,308.3 L219,307.6 L221.1,306.9 L223.3,306.2 L225.4,305.5 L227.5,304.9 L229.6,304.2 L231.8,303.5 L233.9,302.9 L236,302.2 L238.1,301.6 L240.3,300.9 L242.4,300.3 L244.5,299.7 L246.6,299.2 L248.8,298.6 L250.9,298.1 L253,297.6 L255.1,297.1 L257.3,296.7 L259.4,296.3 L261.5,295.9 L263.6,295.5 L265.8,295.2 L267.9,294.9 L270,294.7 L272.2,294.5 L274.3,294.3 L276.4,294.2 L278.5,294.1 L280.7,294 L282.8,294 L284.9,294 L287,294.1 L289.2,294.2 L291.3,294.3 L293.4,294.5 L295.5,294.7 L297.7,294.9 L299.8,295.2 L301.9,295.5 L304,295.9 L306.2,296.3 L308.3,296.7 L310.4,297.1 L312.5,297.6 L314.7,298.1 L316.8,298.6 L318.9,299.2 L321,299.7 L323.2,300.3 L325.3,300.9 L327.4,301.6 L329.5,302.2 L331.7,302.9 L333.8,303.5 L335.9,304.2 L338.1,304.9 L340.2,305.5 L342.3,306.2 L344.4,306.9 L346.6,307.6 L348.7,308.3 L350.8,309 L352.9,309.7 L355.1,310.4 L357.2,311.1 L359.3,311.8 L361.4,312.4 L363.6,313.1 L365.7,313.7 L367.8,314.4 L369.9,315 L372.1,315.7 L374.2,316.3 L376.3,316.9 L378.4,317.5 L380.6,318.1 L382.7,318.6 L384.8,319.2 L386.9,319.7 L389.1,320.3 L391.2,320.8 L393.3,321.3 L395.4,321.8 L397.6,322.3 L399.7,322.7 L401.8,323.2 L404,323.6 L406.1,324 L408.2,324.5 L410.3,324.9 L412.5,325.3 L414.6,325.6 L416.7,326 L418.8,326.4 L421,326.7 L423.1,327 L425.2,327.3 L427.3,327.7 L429.5,328 L431.6,328.2 L433.7,328.5 L435.8,328.8 L438,329.1 L440.1,329.3 L442.2,329.5 L444.3,329.8 L446.5,330 L448.6,330.2 L450.7,330.4 L452.8,330.6 L455,330.8 L457.1,331 L459.2,331.2 L461.3,331.3 L463.5,331.5 L465.6,331.7 L467.7,331.8 L469.9,332 L472,332.1 L474.1,332.2 L476.2,332.4 L478.4,332.5 L480.5,332.6 L482.6,332.7 L484.7,332.8 L486.9,332.9 L489,333 L491.1,333.1 L493.2,333.2 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(0,100,0)" stroke-width="1"><path d="M70.2,335.4 L72.33,335.4 L74.45,335.4 L76.58,335.4 L78.7,335.4 L80.83,335.4 L82.95,335.4 L85.08,335.4 L87.21,335.4 L89.33,335.4 L91.46,335.4 L93.58,335.4 L95.71,335.4 L97.84,335.4 L99.96,335.4 L102.1,335.4 L104.2,335.4 L106.3,335.4 L108.5,335.4 L110.6,335.4 L112.7,335.4 L114.8,335.4 L117,335.4 L119.1,335.4 L121.2,335.4 L123.3,335.4 L125.5,335.4 L127.6,335.4 L129.7,335.4 L131.8,335.4 L134,335.4 L136.1,335.4 L138.2,335.4 L140.4,335.4 L142.5,335.4 L144.6,335.4 L146.7,335.4 L148.9,335.4 L151,335.4 L153.1,335.4 L155.2,335.4 L157.4,335.4 L159.5,335.4 L161.6,335.4 L163.7,335.4 L165.9,335.4 L168,335.4 L170.1,335.4 L172.2,335.4 L174.4,335.4 L176.5,335.4 L178.6,335.4 L180.7,335.4 L182.9,335.4 L185,335.4 L187.1,335.4 L189.2,335.4 L191.4,335.4 L193.5,335.4 L195.6,335.4 L197.7,335.4 L199.9,335.4 L202,335.4 L204.1,335.3 L206.3,335.3 L208.4,335.3 L210.5,335.3 L212.6,335.2 L214.8,335.2 L216.9,335.1 L219,335 L221.1,334.9 L223.3,334.7 L225.4,334.5 L227.5,334.3 L229.6,334 L231.8,333.5 L233.9,333 L236,332.3 L238.1,331.3 L240.3,330.1 L242.4,328.6 L244.5,326.6 L246.6,324 L248.8,320.7 L250.9,316.5 L253,311.1 L255.1,304.3 L257.3,295.7 L259.4,285.2 L261.5,272.2 L263.6,256.5 L265.8,238.1 L267.9,217 L270,193.5 L272.2,168.8 L274.3,144.1 L276.4,121.5 L278.5,103.1 L280.7,91.06 L282.8,86.85 L284.9,91.05 L287,103.1 L289.2,121.5 L291.3,144.1 L293.4,168.7 L295.5,193.5 L297.7,216.9 L299.8,238.1 L301.9,256.5 L304,272.2 L306.2,285.2 L308.3,295.7 L310.4,304.3 L312.5,311.1 L314.7,316.4 L316.8,320.7 L318.9,324 L321,326.6 L323.2,328.6 L325.3,330.1 L327.4,331.3 L329.5,332.3 L331.7,333 L333.8,333.5 L335.9,334 L338.1,334.3 L340.2,334.5 L342.3,334.7 L344.4,334.9 L346.6,335 L348.7,335.1 L350.8,335.2 L352.9,335.2 L355.1,335.3 L357.2,335.3 L359.3,335.3 L361.4,335.3 L363.6,335.4 L365.7,335.4 L367.8,335.4 L369.9,335.4 L372.1,335.4 L374.2,335.4 L376.3,335.4 L378.4,335.4 L380.6,335.4 L382.7,335.4 L384.8,335.4 L386.9,335.4 L389.1,335.4 L391.2,335.4 L393.3,335.4 L395.4,335.4 L397.6,335.4 L399.7,335.4 L401.8,335.4 L404,335.4 L406.1,335.4 L408.2,335.4 L410.3,335.4 L412.5,335.4 L414.6,335.4 L416.7,335.4 L418.8,335.4 L421,335.4 L423.1,335.4 L425.2,335.4 L427.3,335.4 L429.5,335.4 L431.6,335.4 L433.7,335.4 L435.8,335.4 L438,335.4 L440.1,335.4 L442.2,335.4 L444.3,335.4 L446.5,335.4 L448.6,335.4 L450.7,335.4 L452.8,335.4 L455,335.4 L457.1,335.4 L459.2,335.4 L461.3,335.4 L463.5,335.4 L465.6,335.4 L467.7,335.4 L469.9,335.4 L472,335.4 L474.1,335.4 L476.2,335.4 L478.4,335.4 L480.5,335.4 L482.6,335.4 L484.7,335.4 L486.9,335.4 L489,335.4 L491.1,335.4 L493.2,335.4 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(255,140,0)" stroke-width="1"><path d="M70.2,335.4 L72.33,335.4 L74.45,335.4 L76.58,335.4 L78.7,335.4 L80.83,335.4 L82.95,335.4 L85.08,335.4 L87.21,335.4 L89.33,335.4 L91.46,335.4 L93.58,335.4 L95.71,335.4 L97.84,335.4 L99.96,335.4 L102.1,335.4 L104.2,335.4 L106.3,335.4 L108.5,335.4 L110.6,335.4 L112.7,335.4 L114.8,335.4 L117,335.4 L119.1,335.4 L121.2,335.4 L123.3,335.4 L125.5,335.4 L127.6,335.4 L129.7,335.4 L131.8,335.4 L134,335.4 L136.1,335.4 L138.2,335.4 L140.4,335.4 L142.5,335.4 L144.6,335.4 L146.7,335.4 L148.9,335.4 L151,335.4 L153.1,335.4 L155.2,335.4 L157.4,335.4 L159.5,335.4 L161.6,335.4 L163.7,335.4 L165.9,335.4 L168,335.4 L170.1,335.4 L172.2,335.4 L174.4,335.4 L176.5,335.4 L178.6,335.4 L180.7,335.4 L182.9,335.4 L185,335.4 L187.1,335.4 L189.2,335.4 L191.4,335.4 L193.5,335.4 L195.6,335.4 L197.7,335.4 L199.9,335.4 L202,335.4 L204.1,335.4 L206.3,335.4 L208.4,335.4 L210.5,335.4 L212.6,335.4 L214.8,335.3 L216.9,335.3 L219,335.3 L221.1,335.3 L223.3,335.3 L225.4,335.3 L227.5,335.3 L229.6,335.3 L231.8,335.3 L233.9,335.2 L236,335.2 L238.1,335.2 L240.3,335.2 L242.4,335.1 L244.5,335.1 L246.6,335 L248.8,335 L250.9,334.9 L253,334.9 L255.1,334.8 L257.3,334.7 L259.4,334.6 L261.5,334.5 L263.6,334.4 L265.8,334.2 L267.9,334.1 L270,333.9 L272.2,333.7 L274.3,333.4 L276.4,333.2 L278.5,332.8 L280.7,332.5 L282.8,332.1 L284.9,331.6 L287,331.1 L289.2,330.5 L291.3,329.9 L293.4,329.1 L295.5,328.3 L297.7,327.3 L299.8,326.2 L301.9,325 L304,323.6 L306.2,322.1 L308.3,320.3 L310.4,318.4 L312.5,316.2 L314.7,313.7 L316.8,311 L318.9,308 L321,304.7 L323.2,301 L325.3,297.1 L327.4,292.7 L329.5,288 L331.7,283 L333.8,277.6 L335.9,271.9 L338.1,266 L340.2,259.9 L342.3,253.7 L344.4,247.4 L346.6,241.3 L348.7,235.4 L350.8,229.8 L352.9,224.7 L355.1,220.3 L357.2,216.6 L359.3,213.8 L361.4,212 L363.6,211.2 L365.7,211.4 L367.8,212.7 L369.9,215 L372.1,218.3 L374.2,222.3 L376.3,227.1 L378.4,232.4 L380.6,238.2 L382.7,244.3 L384.8,250.5 L386.9,256.7 L389.1,262.9 L391.2,268.9 L393.3,274.7 L395.4,280.2 L397.6,285.5 L399.7,290.3 L401.8,294.9 L404,299 L406.1,302.9 L408.2,306.3 L410.3,309.5 L412.5,312.4 L414.6,315 L416.7,317.3 L418.8,319.3 L421,321.2 L423.1,322.8 L425.2,324.3 L427.3,325.6 L429.5,326.8 L431.6,327.8 L433.7,328.7 L435.8,329.5 L438,330.2 L440.1,330.8 L442.2,331.4 L444.3,331.9 L446.5,332.3 L448.6,332.7 L450.7,333 L452.8,333.3 L455,333.6 L457.1,333.8 L459.2,334 L461.3,334.1 L463.5,334.3 L465.6,334.4 L467.7,334.6 L469.9,334.7 L472,334.7 L474.1,334.8 L476.2,334.9 L478.4,335 L480.5,335 L482.6,335.1 L484.7,335.1 L486.9,335.1 L489,335.2 L491.1,335.2 L493.2,335.2 " fill="none"/></g>
|
||||
</g>
|
||||
<g id="plotPoints" clip-path="url(#plot_window)"></g>
|
||||
<g id="legendBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="1"><rect x="509.4" y="62" width="228.6" height="135"/><rect x="509.4" y="62" width="228.6" height="135"/></g>
|
||||
<g id="legendPoints"><g stroke="rgb(0,0,139)" stroke-width="1"><line x1="524.4" y1="92" x2="539.4" y2="92"/></g>
|
||||
<g stroke="rgb(139,0,0)" stroke-width="1"><line x1="524.4" y1="122" x2="539.4" y2="122"/></g>
|
||||
<g stroke="rgb(0,100,0)" stroke-width="1"><line x1="524.4" y1="152" x2="539.4" y2="152"/></g>
|
||||
<g stroke="rgb(255,140,0)" stroke-width="1"><line x1="524.4" y1="182" x2="539.4" y2="182"/></g>
|
||||
</g>
|
||||
<g id="legendText">
|
||||
<text x="546.9" y="92" font-size="15" font-family="Verdana">location=0, scale=1</text>
|
||||
<text x="546.9" y="122" font-size="15" font-family="Verdana">location=0, scale=3</text>
|
||||
<text x="546.9" y="152" font-size="15" font-family="Verdana">location=0, scale=0.5</text>
|
||||
<text x="546.9" y="182" font-size="15" font-family="Verdana">location=5, scale=1</text></g>
|
||||
<g id="title">
|
||||
<text x="375" y="40" text-anchor="middle" font-size="20" font-family="Verdana">Logistic Distribution PDF</text></g>
|
||||
<g id="plotXValues"></g>
|
||||
<g id="plotYValues"></g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 39 KiB |
@@ -1,63 +1,64 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="750" height ="400" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:ev="http://www.w3.org/2001/xml-events">
|
||||
|
||||
<svg width="750" height ="400" version="1.1"
|
||||
xmlns:svg ="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns ="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) -->
|
||||
<!-- Use, modification and distribution of Boost.Plot subject to the -->
|
||||
<!-- Boost Software License, Version 1.0.-->
|
||||
<!-- (See accompanying file LICENSE_1_0.txt -->
|
||||
<!-- or copy at http://www.boost.org/LICENSE_1_0.txt) -->
|
||||
|
||||
<clipPath id="plot_window"><rect x="71.2" y="63" width="509.4" height="274.2"/></clipPath>
|
||||
<clipPath id="plot_window"><rect x="71.2" y="63" width="532.9" height="271.4"/></clipPath>
|
||||
<g id="imageBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="0" y="0" width="750" height="400"/></g>
|
||||
<g id="plotBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="70.2" y="62" width="511.4" height="276.2"/></g>
|
||||
<g id="plotBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="70.2" y="62" width="534.9" height="273.4"/></g>
|
||||
<g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="yMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="xMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="xMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="yAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="70.2" y1="62" x2="70.2" y2="338.2"/></g>
|
||||
<g id="xAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="65.2" y1="338.2" x2="581.6" y2="338.2"/><line x1="65.2" y1="338.2" x2="581.6" y2="338.2"/></g>
|
||||
<g id="yMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M68.2,332.4 L70.2,332.4 M68.2,326.7 L70.2,326.7 M68.2,320.9 L70.2,320.9 M68.2,315.2 L70.2,315.2 M68.2,303.7 L70.2,303.7 M68.2,297.9 L70.2,297.9 M68.2,292.2 L70.2,292.2 M68.2,286.4 L70.2,286.4 M68.2,274.9 L70.2,274.9 M68.2,269.2 L70.2,269.2 M68.2,263.4 L70.2,263.4 M68.2,257.7 L70.2,257.7 M68.2,246.2 L70.2,246.2 M68.2,240.4 L70.2,240.4 M68.2,234.6 L70.2,234.6 M68.2,228.9 L70.2,228.9 M68.2,217.4 L70.2,217.4 M68.2,211.6 L70.2,211.6 M68.2,205.9 L70.2,205.9 M68.2,200.1 L70.2,200.1 M68.2,188.6 L70.2,188.6 M68.2,182.9 L70.2,182.9 M68.2,177.1 L70.2,177.1 M68.2,171.4 L70.2,171.4 M68.2,159.9 L70.2,159.9 M68.2,154.1 L70.2,154.1 M68.2,148.3 L70.2,148.3 M68.2,142.6 L70.2,142.6 M68.2,131.1 L70.2,131.1 M68.2,125.3 L70.2,125.3 M68.2,119.6 L70.2,119.6 M68.2,113.8 L70.2,113.8 M68.2,102.3 L70.2,102.3 M68.2,96.57 L70.2,96.57 M68.2,90.82 L70.2,90.82 M68.2,85.06 L70.2,85.06 M68.2,73.56 L70.2,73.56 M68.2,67.8 L70.2,67.8 M68.2,62.05 L70.2,62.05 M68.2,338.2 L70.2,338.2 "/></g>
|
||||
<g id="xMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M70.2,338.2 L70.2,340.2 M110.9,338.2 L110.9,340.2 M151.7,338.2 L151.7,340.2 M192.4,338.2 L192.4,340.2 M273.9,338.2 L273.9,340.2 M314.7,338.2 L314.7,340.2 M355.4,338.2 L355.4,340.2 M396.2,338.2 L396.2,340.2 M477.7,338.2 L477.7,340.2 M518.4,338.2 L518.4,340.2 M559.2,338.2 L559.2,340.2 "/></g>
|
||||
<g id="yMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M65.2,338.2 L70.2,338.2 M65.2,309.4 L70.2,309.4 M65.2,280.7 L70.2,280.7 M65.2,251.9 L70.2,251.9 M65.2,223.1 L70.2,223.1 M65.2,194.4 L70.2,194.4 M65.2,165.6 L70.2,165.6 M65.2,136.8 L70.2,136.8 M65.2,108.1 L70.2,108.1 M65.2,79.31 L70.2,79.31 M65.2,338.2 L70.2,338.2 "/></g>
|
||||
<g id="xMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M233.2,338.2 L233.2,343.2 M436.9,338.2 L436.9,343.2 "/></g>
|
||||
<g id="yAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="70.2" y1="62" x2="70.2" y2="335.4"/></g>
|
||||
<g id="xAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="65.2" y1="335.4" x2="605.1" y2="335.4"/><line x1="65.2" y1="335.4" x2="605.1" y2="335.4"/></g>
|
||||
<g id="yMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M68.2,329.7 L70.2,329.7 M68.2,324 L70.2,324 M68.2,318.3 L70.2,318.3 M68.2,312.6 L70.2,312.6 M68.2,301.2 L70.2,301.2 M68.2,295.5 L70.2,295.5 M68.2,289.8 L70.2,289.8 M68.2,284.1 L70.2,284.1 M68.2,272.8 L70.2,272.8 M68.2,267.1 L70.2,267.1 M68.2,261.4 L70.2,261.4 M68.2,255.7 L70.2,255.7 M68.2,244.3 L70.2,244.3 M68.2,238.6 L70.2,238.6 M68.2,232.9 L70.2,232.9 M68.2,227.2 L70.2,227.2 M68.2,215.8 L70.2,215.8 M68.2,210.1 L70.2,210.1 M68.2,204.4 L70.2,204.4 M68.2,198.7 L70.2,198.7 M68.2,187.3 L70.2,187.3 M68.2,181.6 L70.2,181.6 M68.2,175.9 L70.2,175.9 M68.2,170.3 L70.2,170.3 M68.2,158.9 L70.2,158.9 M68.2,153.2 L70.2,153.2 M68.2,147.5 L70.2,147.5 M68.2,141.8 L70.2,141.8 M68.2,130.4 L70.2,130.4 M68.2,124.7 L70.2,124.7 M68.2,119 L70.2,119 M68.2,113.3 L70.2,113.3 M68.2,101.9 L70.2,101.9 M68.2,96.22 L70.2,96.22 M68.2,90.52 L70.2,90.52 M68.2,84.83 L70.2,84.83 M68.2,73.44 L70.2,73.44 M68.2,67.75 L70.2,67.75 M68.2,62.05 L70.2,62.05 M68.2,335.4 L70.2,335.4 " fill="none"/></g>
|
||||
<g id="xMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M70.2,335.4 L70.2,337.4 M112.8,335.4 L112.8,337.4 M155.4,335.4 L155.4,337.4 M198.1,335.4 L198.1,337.4 M283.3,335.4 L283.3,337.4 M325.9,335.4 L325.9,337.4 M368.5,335.4 L368.5,337.4 M411.2,335.4 L411.2,337.4 M496.4,335.4 L496.4,337.4 M539,335.4 L539,337.4 M581.7,335.4 L581.7,337.4 " fill="none"/></g>
|
||||
<g id="yMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M65.2,335.4 L70.2,335.4 M65.2,306.9 L70.2,306.9 M65.2,278.5 L70.2,278.5 M65.2,250 L70.2,250 M65.2,221.5 L70.2,221.5 M65.2,193 L70.2,193 M65.2,164.6 L70.2,164.6 M65.2,136.1 L70.2,136.1 M65.2,107.6 L70.2,107.6 M65.2,79.13 L70.2,79.13 M65.2,335.4 L70.2,335.4 " fill="none"/></g>
|
||||
<g id="xMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M240.7,335.4 L240.7,340.4 M453.8,335.4 L453.8,340.4 " fill="none"/></g>
|
||||
<g id="plotLabels">
|
||||
<text x="233.2" y="357.6" text-anchor="middle" font-size="12" font-family="Verdana">5</text>
|
||||
<text x="436.9" y="357.6" text-anchor="middle" font-size="12" font-family="Verdana">10</text>
|
||||
<text x="59.2" y="340.6" text-anchor="end" font-size="12" font-family="Verdana">0</text>
|
||||
<text x="59.2" y="311.8" text-anchor="end" font-size="12" font-family="Verdana">0.1</text>
|
||||
<text x="59.2" y="283.1" text-anchor="end" font-size="12" font-family="Verdana">0.2</text>
|
||||
<text x="59.2" y="254.3" text-anchor="end" font-size="12" font-family="Verdana">0.3</text>
|
||||
<text x="59.2" y="225.5" text-anchor="end" font-size="12" font-family="Verdana">0.4</text>
|
||||
<text x="59.2" y="196.8" text-anchor="end" font-size="12" font-family="Verdana">0.5</text>
|
||||
<text x="59.2" y="168" text-anchor="end" font-size="12" font-family="Verdana">0.6</text>
|
||||
<text x="59.2" y="139.2" text-anchor="end" font-size="12" font-family="Verdana">0.7</text>
|
||||
<text x="59.2" y="110.5" text-anchor="end" font-size="12" font-family="Verdana">0.8</text>
|
||||
<text x="59.2" y="81.71" text-anchor="end" font-size="12" font-family="Verdana">0.9</text>
|
||||
<text x="59.2" y="340.6" text-anchor="end" font-size="12" font-family="Verdana">0</text></g>
|
||||
<text x="240.7" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">5</text>
|
||||
<text x="453.8" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">10</text>
|
||||
<text x="59.2" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text>
|
||||
<text x="59.2" y="309.3" text-anchor="end" font-size="12" font-family="Verdana">0.1</text>
|
||||
<text x="59.2" y="280.9" text-anchor="end" font-size="12" font-family="Verdana">0.2</text>
|
||||
<text x="59.2" y="252.4" text-anchor="end" font-size="12" font-family="Verdana">0.3</text>
|
||||
<text x="59.2" y="223.9" text-anchor="end" font-size="12" font-family="Verdana">0.4</text>
|
||||
<text x="59.2" y="195.4" text-anchor="end" font-size="12" font-family="Verdana">0.5</text>
|
||||
<text x="59.2" y="167" text-anchor="end" font-size="12" font-family="Verdana">0.6</text>
|
||||
<text x="59.2" y="138.5" text-anchor="end" font-size="12" font-family="Verdana">0.7</text>
|
||||
<text x="59.2" y="110" text-anchor="end" font-size="12" font-family="Verdana">0.8</text>
|
||||
<text x="59.2" y="81.53" text-anchor="end" font-size="12" font-family="Verdana">0.9</text>
|
||||
<text x="59.2" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text></g>
|
||||
<g id="yLabel">
|
||||
<text x="30.2" y="200.1" text-anchor="middle" transform = "rotate(-90 30.2 200.1 )" font-size="14" font-family="Verdana">Probability</text></g>
|
||||
<text x="30.2" y="198.7" text-anchor="middle" transform = "rotate(-90 30.2 198.7 )" font-size="14" font-family="Verdana">Probability</text></g>
|
||||
<g id="xLabel">
|
||||
<text x="325.9" y="384" text-anchor="middle" font-size="14" font-family="Verdana">Random Variable</text></g>
|
||||
<g id="plotLines" stroke-width="2"><g clip-path="url(#plot_window)" stroke="rgb(0,0,139)" stroke-width="1"><path d="M70.2,50.54 L72.76,83.51 L75.31,111.1 L77.87,134.5 L80.43,154.4 L82.99,171.5 L85.54,186.4 L88.1,199.3 L90.66,210.7 L93.21,220.7 L95.77,229.6 L98.33,237.5 L100.9,244.6 L103.4,251 L106,256.7 L108.6,261.9 L111.1,266.6 L113.7,270.9 L116.2,274.8 L118.8,278.3 L121.3,281.6 L123.9,284.7 L126.5,287.4 L129,290 L131.6,292.4 L134.1,294.6 L136.7,296.7 L139.2,298.6 L141.8,300.4 L144.4,302 L146.9,303.6 L149.5,305 L152,306.4 L154.6,307.7 L157.1,308.9 L159.7,310 L162.3,311.1 L164.8,312.1 L167.4,313.1 L169.9,314 L172.5,314.9 L175,315.7 L177.6,316.4 L180.2,317.2 L182.7,317.9 L185.3,318.5 L187.8,319.2 L190.4,319.8 L192.9,320.3 L195.5,320.9 L198,321.4 L200.6,321.9 L203.2,322.4 L205.7,322.8 L208.3,323.3 L210.8,323.7 L213.4,324.1 L215.9,324.5 L218.5,324.8 L221.1,325.2 L223.6,325.5 L226.2,325.9 L228.7,326.2 L231.3,326.5 L233.8,326.8 L236.4,327 L239,327.3 L241.5,327.6 L244.1,327.8 L246.6,328.1 L249.2,328.3 L251.7,328.5 L254.3,328.8 L256.9,329 L259.4,329.2 L262,329.4 L264.5,329.6 L267.1,329.7 L269.6,329.9 L272.2,330.1 L274.8,330.3 L277.3,330.4 L279.9,330.6 L282.4,330.7 L285,330.9 L287.5,331 L290.1,331.2 L292.7,331.3 L295.2,331.4 L297.8,331.6 L300.3,331.7 L302.9,331.8 L305.4,331.9 L308,332 L310.6,332.2 L313.1,332.3 L315.7,332.4 L318.2,332.5 L320.8,332.6 L323.3,332.7 L325.9,332.8 L328.5,332.9 L331,332.9 L333.6,333 L336.1,333.1 L338.7,333.2 L341.2,333.3 L343.8,333.4 L346.4,333.4 L348.9,333.5 L351.5,333.6 L354,333.7 L356.6,333.7 L359.1,333.8 L361.7,333.9 L364.3,333.9 L366.8,334 L369.4,334.1 L371.9,334.1 L374.5,334.2 L377,334.2 L379.6,334.3 L382.2,334.4 L384.7,334.4 L387.3,334.5 L389.8,334.5 L392.4,334.6 L394.9,334.6 L397.5,334.7 L400.1,334.7 L402.6,334.8 L405.2,334.8 L407.7,334.9 L410.3,334.9 L412.8,335 L415.4,335 L418,335 L420.5,335.1 L423.1,335.1 L425.6,335.2 L428.2,335.2 L430.7,335.2 L433.3,335.3 L435.9,335.3 L438.4,335.3 L441,335.4 L443.5,335.4 L446.1,335.4 L448.6,335.5 L451.2,335.5 L453.7,335.5 L456.3,335.6 L458.9,335.6 L461.4,335.6 L464,335.7 L466.5,335.7 L469.1,335.7 L471.6,335.8 L474.2,335.8 L476.8,335.8 L479.3,335.8 L481.9,335.9 L484.4,335.9 L487,335.9 L489.5,335.9 L492.1,336 L494.7,336 L497.2,336 L499.8,336 L502.3,336.1 L504.9,336.1 L507.4,336.1 L510,336.1 L512.6,336.2 L515.1,336.2 L517.7,336.2 L520.2,336.2 L522.8,336.2 L525.3,336.3 L527.9,336.3 L530.5,336.3 L533,336.3 L535.6,336.3 L538.1,336.4 L540.7,336.4 L543.2,336.4 L545.8,336.4 L548.4,336.4 L550.9,336.4 L553.5,336.5 L556,336.5 L558.6,336.5 L561.1,336.5 L563.7,336.5 L566.3,336.5 L568.8,336.6 L571.4,336.6 L573.9,336.6 L576.5,336.6 L579,336.6 L581.6,336.6 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(139,0,0)" stroke-width="1"><path d="M70.2,338.2 L72.76,338.2 L75.31,338.2 L77.87,338.2 L80.43,338.2 L82.99,338.2 L85.54,338.2 L88.1,338.2 L90.66,338.2 L93.21,338.2 L95.77,338.2 L98.33,338.2 L100.9,338.2 L103.4,338.2 L106,338.2 L108.6,338.2 L111.1,195 L113.7,203.5 L116.2,211.3 L118.8,218.5 L121.3,225.1 L123.9,231.1 L126.5,236.7 L129,241.8 L131.6,246.6 L134.1,251 L136.7,255.1 L139.2,258.9 L141.8,262.5 L144.4,265.8 L146.9,269 L149.5,271.9 L152,274.6 L154.6,277.2 L157.1,279.6 L159.7,281.9 L162.3,284 L164.8,286.1 L167.4,288 L169.9,289.8 L172.5,291.5 L175,293.1 L177.6,294.7 L180.2,296.1 L182.7,297.5 L185.3,298.9 L187.8,300.1 L190.4,301.3 L192.9,302.5 L195.5,303.6 L198,304.6 L200.6,305.6 L203.2,306.5 L205.7,307.5 L208.3,308.3 L210.8,309.2 L213.4,310 L215.9,310.7 L218.5,311.5 L221.1,312.2 L223.6,312.9 L226.2,313.5 L228.7,314.1 L231.3,314.8 L233.8,315.3 L236.4,315.9 L239,316.4 L241.5,317 L244.1,317.5 L246.6,317.9 L249.2,318.4 L251.7,318.9 L254.3,319.3 L256.9,319.7 L259.4,320.1 L262,320.5 L264.5,320.9 L267.1,321.3 L269.6,321.6 L272.2,322 L274.8,322.3 L277.3,322.7 L279.9,323 L282.4,323.3 L285,323.6 L287.5,323.9 L290.1,324.1 L292.7,324.4 L295.2,324.7 L297.8,324.9 L300.3,325.2 L302.9,325.4 L305.4,325.7 L308,325.9 L310.6,326.1 L313.1,326.3 L315.7,326.5 L318.2,326.7 L320.8,326.9 L323.3,327.1 L325.9,327.3 L328.5,327.5 L331,327.7 L333.6,327.9 L336.1,328 L338.7,328.2 L341.2,328.4 L343.8,328.5 L346.4,328.7 L348.9,328.8 L351.5,329 L354,329.1 L356.6,329.3 L359.1,329.4 L361.7,329.5 L364.3,329.7 L366.8,329.8 L369.4,329.9 L371.9,330.1 L374.5,330.2 L377,330.3 L379.6,330.4 L382.2,330.5 L384.7,330.6 L387.3,330.7 L389.8,330.8 L392.4,330.9 L394.9,331 L397.5,331.1 L400.1,331.2 L402.6,331.3 L405.2,331.4 L407.7,331.5 L410.3,331.6 L412.8,331.7 L415.4,331.8 L418,331.9 L420.5,332 L423.1,332 L425.6,332.1 L428.2,332.2 L430.7,332.3 L433.3,332.3 L435.9,332.4 L438.4,332.5 L441,332.6 L443.5,332.6 L446.1,332.7 L448.6,332.8 L451.2,332.8 L453.7,332.9 L456.3,333 L458.9,333 L461.4,333.1 L464,333.1 L466.5,333.2 L469.1,333.3 L471.6,333.3 L474.2,333.4 L476.8,333.4 L479.3,333.5 L481.9,333.5 L484.4,333.6 L487,333.6 L489.5,333.7 L492.1,333.7 L494.7,333.8 L497.2,333.8 L499.8,333.9 L502.3,333.9 L504.9,334 L507.4,334 L510,334.1 L512.6,334.1 L515.1,334.2 L517.7,334.2 L520.2,334.2 L522.8,334.3 L525.3,334.3 L527.9,334.4 L530.5,334.4 L533,334.4 L535.6,334.5 L538.1,334.5 L540.7,334.5 L543.2,334.6 L545.8,334.6 L548.4,334.7 L550.9,334.7 L553.5,334.7 L556,334.8 L558.6,334.8 L561.1,334.8 L563.7,334.9 L566.3,334.9 L568.8,334.9 L571.4,334.9 L573.9,335 L576.5,335 L579,335 L581.6,335.1 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(0,100,0)" stroke-width="1"><path d="M70.2,338.2 L72.76,338.2 L75.31,338.2 L77.87,338.2 L80.43,338.2 L82.99,338.2 L85.54,338.2 L88.1,338.2 L90.66,338.2 L93.21,338.2 L95.77,338.2 L98.33,338.2 L100.9,338.2 L103.4,338.2 L106,338.2 L108.6,338.2 L111.1,338.2 L113.7,338.2 L116.2,338.2 L118.8,338.2 L121.3,338.2 L123.9,338.2 L126.5,338.2 L129,338.2 L131.6,338.2 L134.1,338.2 L136.7,338.2 L139.2,338.2 L141.8,338.2 L144.4,338.2 L146.9,338.2 L149.5,338.2 L152,242.8 L154.6,246.7 L157.1,250.3 L159.7,253.7 L162.3,257 L164.8,260 L167.4,262.9 L169.9,265.6 L172.5,268.2 L175,270.6 L177.6,272.9 L180.2,275.1 L182.7,277.2 L185.3,279.2 L187.8,281.1 L190.4,282.9 L192.9,284.6 L195.5,286.2 L198,287.8 L200.6,289.3 L203.2,290.7 L205.7,292.1 L208.3,293.4 L210.8,294.6 L213.4,295.9 L215.9,297 L218.5,298.1 L221.1,299.2 L223.6,300.2 L226.2,301.2 L228.7,302.1 L231.3,303 L233.8,303.9 L236.4,304.7 L239,305.6 L241.5,306.3 L244.1,307.1 L246.6,307.8 L249.2,308.5 L251.7,309.2 L254.3,309.9 L256.9,310.5 L259.4,311.1 L262,311.7 L264.5,312.3 L267.1,312.8 L269.6,313.4 L272.2,313.9 L274.8,314.4 L277.3,314.9 L279.9,315.4 L282.4,315.8 L285,316.3 L287.5,316.7 L290.1,317.1 L292.7,317.5 L295.2,317.9 L297.8,318.3 L300.3,318.7 L302.9,319 L305.4,319.4 L308,319.7 L310.6,320.1 L313.1,320.4 L315.7,320.7 L318.2,321 L320.8,321.3 L323.3,321.6 L325.9,321.9 L328.5,322.2 L331,322.4 L333.6,322.7 L336.1,323 L338.7,323.2 L341.2,323.5 L343.8,323.7 L346.4,323.9 L348.9,324.2 L351.5,324.4 L354,324.6 L356.6,324.8 L359.1,325 L361.7,325.2 L364.3,325.4 L366.8,325.6 L369.4,325.8 L371.9,326 L374.5,326.2 L377,326.3 L379.6,326.5 L382.2,326.7 L384.7,326.8 L387.3,327 L389.8,327.2 L392.4,327.3 L394.9,327.5 L397.5,327.6 L400.1,327.8 L402.6,327.9 L405.2,328 L407.7,328.2 L410.3,328.3 L412.8,328.5 L415.4,328.6 L418,328.7 L420.5,328.8 L423.1,329 L425.6,329.1 L428.2,329.2 L430.7,329.3 L433.3,329.4 L435.9,329.5 L438.4,329.6 L441,329.7 L443.5,329.8 L446.1,329.9 L448.6,330 L451.2,330.1 L453.7,330.2 L456.3,330.3 L458.9,330.4 L461.4,330.5 L464,330.6 L466.5,330.7 L469.1,330.8 L471.6,330.9 L474.2,331 L476.8,331 L479.3,331.1 L481.9,331.2 L484.4,331.3 L487,331.4 L489.5,331.4 L492.1,331.5 L494.7,331.6 L497.2,331.7 L499.8,331.7 L502.3,331.8 L504.9,331.9 L507.4,331.9 L510,332 L512.6,332.1 L515.1,332.1 L517.7,332.2 L520.2,332.3 L522.8,332.3 L525.3,332.4 L527.9,332.4 L530.5,332.5 L533,332.5 L535.6,332.6 L538.1,332.7 L540.7,332.7 L543.2,332.8 L545.8,332.8 L548.4,332.9 L550.9,332.9 L553.5,333 L556,333 L558.6,333.1 L561.1,333.1 L563.7,333.2 L566.3,333.2 L568.8,333.3 L571.4,333.3 L573.9,333.4 L576.5,333.4 L579,333.5 L581.6,333.5 " fill="none"/></g>
|
||||
<text x="337.7" y="388" text-anchor="middle" font-size="14" font-family="Verdana">Random Variable</text></g>
|
||||
<g id="plotLines" stroke-width="2"><g clip-path="url(#plot_window)" stroke="rgb(0,0,139)" stroke-width="1"><path d="M70.2,50.66 L72.87,83.29 L75.55,110.6 L78.22,133.7 L80.9,153.5 L83.57,170.4 L86.25,185.1 L88.92,197.9 L91.6,209.2 L94.27,219.1 L96.95,227.9 L99.62,235.7 L102.3,242.7 L105,249 L107.6,254.7 L110.3,259.8 L113,264.5 L115.7,268.7 L118.3,272.6 L121,276.2 L123.7,279.4 L126.4,282.4 L129,285.2 L131.7,287.7 L134.4,290.1 L137.1,292.3 L139.7,294.3 L142.4,296.2 L145.1,297.9 L147.8,299.6 L150.4,301.1 L153.1,302.6 L155.8,303.9 L158.5,305.2 L161.1,306.4 L163.8,307.5 L166.5,308.6 L169.2,309.6 L171.8,310.5 L174.5,311.4 L177.2,312.3 L179.9,313.1 L182.5,313.9 L185.2,314.6 L187.9,315.3 L190.6,315.9 L193.2,316.6 L195.9,317.1 L198.6,317.7 L201.3,318.3 L203.9,318.8 L206.6,319.3 L209.3,319.7 L212,320.2 L214.6,320.6 L217.3,321 L220,321.4 L222.7,321.8 L225.3,322.2 L228,322.5 L230.7,322.9 L233.4,323.2 L236,323.5 L238.7,323.8 L241.4,324.1 L244,324.4 L246.7,324.6 L249.4,324.9 L252.1,325.1 L254.7,325.4 L257.4,325.6 L260.1,325.8 L262.8,326 L265.4,326.3 L268.1,326.5 L270.8,326.7 L273.5,326.8 L276.1,327 L278.8,327.2 L281.5,327.4 L284.2,327.5 L286.8,327.7 L289.5,327.9 L292.2,328 L294.9,328.2 L297.5,328.3 L300.2,328.4 L302.9,328.6 L305.6,328.7 L308.2,328.8 L310.9,329 L313.6,329.1 L316.3,329.2 L318.9,329.3 L321.6,329.4 L324.3,329.5 L327,329.6 L329.6,329.7 L332.3,329.8 L335,329.9 L337.7,330 L340.3,330.1 L343,330.2 L345.7,330.3 L348.4,330.4 L351,330.5 L353.7,330.5 L356.4,330.6 L359.1,330.7 L361.7,330.8 L364.4,330.8 L367.1,330.9 L369.8,331 L372.4,331.1 L375.1,331.1 L377.8,331.2 L380.5,331.2 L383.1,331.3 L385.8,331.4 L388.5,331.4 L391.2,331.5 L393.8,331.5 L396.5,331.6 L399.2,331.7 L401.9,331.7 L404.5,331.8 L407.2,331.8 L409.9,331.9 L412.5,331.9 L415.2,332 L417.9,332 L420.6,332.1 L423.2,332.1 L425.9,332.1 L428.6,332.2 L431.3,332.2 L433.9,332.3 L436.6,332.3 L439.3,332.3 L442,332.4 L444.6,332.4 L447.3,332.5 L450,332.5 L452.7,332.5 L455.3,332.6 L458,332.6 L460.7,332.6 L463.4,332.7 L466,332.7 L468.7,332.7 L471.4,332.8 L474.1,332.8 L476.7,332.8 L479.4,332.9 L482.1,332.9 L484.8,332.9 L487.4,333 L490.1,333 L492.8,333 L495.5,333 L498.1,333.1 L500.8,333.1 L503.5,333.1 L506.2,333.1 L508.8,333.2 L511.5,333.2 L514.2,333.2 L516.9,333.2 L519.5,333.3 L522.2,333.3 L524.9,333.3 L527.6,333.3 L530.2,333.4 L532.9,333.4 L535.6,333.4 L538.3,333.4 L540.9,333.4 L543.6,333.5 L546.3,333.5 L549,333.5 L551.6,333.5 L554.3,333.5 L557,333.6 L559.7,333.6 L562.3,333.6 L565,333.6 L567.7,333.6 L570.4,333.6 L573,333.7 L575.7,333.7 L578.4,333.7 L581,333.7 L583.7,333.7 L586.4,333.7 L589.1,333.8 L591.7,333.8 L594.4,333.8 L597.1,333.8 L599.8,333.8 L602.4,333.8 L605.1,333.8 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(139,0,0)" stroke-width="1"><path d="M70.2,335.4 L72.87,335.4 L75.55,335.4 L78.22,335.4 L80.9,335.4 L83.57,335.4 L86.25,335.4 L88.92,335.4 L91.6,335.4 L94.27,335.4 L96.95,335.4 L99.62,335.4 L102.3,335.4 L105,335.4 L107.6,335.4 L110.3,335.4 L113,193.6 L115.7,202.1 L118.3,209.8 L121,216.9 L123.7,223.4 L126.4,229.4 L129,234.9 L131.7,240 L134.4,244.7 L137.1,249.1 L139.7,253.2 L142.4,257 L145.1,260.5 L147.8,263.8 L150.4,266.9 L153.1,269.8 L155.8,272.5 L158.5,275 L161.1,277.4 L163.8,279.7 L166.5,281.8 L169.2,283.8 L171.8,285.7 L174.5,287.5 L177.2,289.2 L179.9,290.8 L182.5,292.3 L185.2,293.8 L187.9,295.1 L190.6,296.5 L193.2,297.7 L195.9,298.9 L198.6,300 L201.3,301.1 L203.9,302.1 L206.6,303.1 L209.3,304.1 L212,305 L214.6,305.8 L217.3,306.7 L220,307.5 L222.7,308.2 L225.3,308.9 L228,309.6 L230.7,310.3 L233.4,311 L236,311.6 L238.7,312.2 L241.4,312.8 L244,313.3 L246.7,313.9 L249.4,314.4 L252.1,314.9 L254.7,315.4 L257.4,315.8 L260.1,316.3 L262.8,316.7 L265.4,317.1 L268.1,317.5 L270.8,317.9 L273.5,318.3 L276.1,318.7 L278.8,319 L281.5,319.4 L284.2,319.7 L286.8,320 L289.5,320.3 L292.2,320.6 L294.9,320.9 L297.5,321.2 L300.2,321.5 L302.9,321.8 L305.6,322 L308.2,322.3 L310.9,322.5 L313.6,322.8 L316.3,323 L318.9,323.2 L321.6,323.4 L324.3,323.6 L327,323.9 L329.6,324.1 L332.3,324.3 L335,324.5 L337.7,324.6 L340.3,324.8 L343,325 L345.7,325.2 L348.4,325.3 L351,325.5 L353.7,325.7 L356.4,325.8 L359.1,326 L361.7,326.1 L364.4,326.3 L367.1,326.4 L369.8,326.6 L372.4,326.7 L375.1,326.8 L377.8,327 L380.5,327.1 L383.1,327.2 L385.8,327.3 L388.5,327.5 L391.2,327.6 L393.8,327.7 L396.5,327.8 L399.2,327.9 L401.9,328 L404.5,328.1 L407.2,328.2 L409.9,328.3 L412.5,328.4 L415.2,328.5 L417.9,328.6 L420.6,328.7 L423.2,328.8 L425.9,328.9 L428.6,329 L431.3,329.1 L433.9,329.1 L436.6,329.2 L439.3,329.3 L442,329.4 L444.6,329.5 L447.3,329.5 L450,329.6 L452.7,329.7 L455.3,329.7 L458,329.8 L460.7,329.9 L463.4,330 L466,330 L468.7,330.1 L471.4,330.1 L474.1,330.2 L476.7,330.3 L479.4,330.3 L482.1,330.4 L484.8,330.5 L487.4,330.5 L490.1,330.6 L492.8,330.6 L495.5,330.7 L498.1,330.7 L500.8,330.8 L503.5,330.8 L506.2,330.9 L508.8,330.9 L511.5,331 L514.2,331 L516.9,331.1 L519.5,331.1 L522.2,331.2 L524.9,331.2 L527.6,331.3 L530.2,331.3 L532.9,331.3 L535.6,331.4 L538.3,331.4 L540.9,331.5 L543.6,331.5 L546.3,331.6 L549,331.6 L551.6,331.6 L554.3,331.7 L557,331.7 L559.7,331.7 L562.3,331.8 L565,331.8 L567.7,331.9 L570.4,331.9 L573,331.9 L575.7,332 L578.4,332 L581,332 L583.7,332.1 L586.4,332.1 L589.1,332.1 L591.7,332.1 L594.4,332.2 L597.1,332.2 L599.8,332.2 L602.4,332.3 L605.1,332.3 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(0,100,0)" stroke-width="1"><path d="M70.2,335.4 L72.87,335.4 L75.55,335.4 L78.22,335.4 L80.9,335.4 L83.57,335.4 L86.25,335.4 L88.92,335.4 L91.6,335.4 L94.27,335.4 L96.95,335.4 L99.62,335.4 L102.3,335.4 L105,335.4 L107.6,335.4 L110.3,335.4 L113,335.4 L115.7,335.4 L118.3,335.4 L121,335.4 L123.7,335.4 L126.4,335.4 L129,335.4 L131.7,335.4 L134.4,335.4 L137.1,335.4 L139.7,335.4 L142.4,335.4 L145.1,335.4 L147.8,335.4 L150.4,335.4 L153.1,335.4 L155.8,241 L158.5,244.8 L161.1,248.4 L163.8,251.8 L166.5,255 L169.2,258 L171.8,260.8 L174.5,263.5 L177.2,266.1 L179.9,268.5 L182.5,270.8 L185.2,272.9 L187.9,275 L190.6,277 L193.2,278.9 L195.9,280.6 L198.6,282.3 L201.3,284 L203.9,285.5 L206.6,287 L209.3,288.4 L212,289.8 L214.6,291 L217.3,292.3 L220,293.5 L222.7,294.6 L225.3,295.7 L228,296.8 L230.7,297.8 L233.4,298.8 L236,299.7 L238.7,300.6 L241.4,301.5 L244,302.3 L246.7,303.1 L249.4,303.9 L252.1,304.6 L254.7,305.3 L257.4,306 L260.1,306.7 L262.8,307.3 L265.4,308 L268.1,308.6 L270.8,309.2 L273.5,309.7 L276.1,310.3 L278.8,310.8 L281.5,311.3 L284.2,311.8 L286.8,312.3 L289.5,312.8 L292.2,313.2 L294.9,313.7 L297.5,314.1 L300.2,314.5 L302.9,314.9 L305.6,315.3 L308.2,315.7 L310.9,316.1 L313.6,316.4 L316.3,316.8 L318.9,317.1 L321.6,317.5 L324.3,317.8 L327,318.1 L329.6,318.4 L332.3,318.7 L335,319 L337.7,319.3 L340.3,319.5 L343,319.8 L345.7,320.1 L348.4,320.3 L351,320.6 L353.7,320.8 L356.4,321 L359.1,321.3 L361.7,321.5 L364.4,321.7 L367.1,321.9 L369.8,322.1 L372.4,322.4 L375.1,322.6 L377.8,322.7 L380.5,322.9 L383.1,323.1 L385.8,323.3 L388.5,323.5 L391.2,323.7 L393.8,323.8 L396.5,324 L399.2,324.2 L401.9,324.3 L404.5,324.5 L407.2,324.6 L409.9,324.8 L412.5,324.9 L415.2,325.1 L417.9,325.2 L420.6,325.4 L423.2,325.5 L425.9,325.6 L428.6,325.8 L431.3,325.9 L433.9,326 L436.6,326.1 L439.3,326.2 L442,326.4 L444.6,326.5 L447.3,326.6 L450,326.7 L452.7,326.8 L455.3,326.9 L458,327 L460.7,327.1 L463.4,327.2 L466,327.3 L468.7,327.4 L471.4,327.5 L474.1,327.6 L476.7,327.7 L479.4,327.8 L482.1,327.9 L484.8,328 L487.4,328.1 L490.1,328.1 L492.8,328.2 L495.5,328.3 L498.1,328.4 L500.8,328.5 L503.5,328.5 L506.2,328.6 L508.8,328.7 L511.5,328.8 L514.2,328.8 L516.9,328.9 L519.5,329 L522.2,329.1 L524.9,329.1 L527.6,329.2 L530.2,329.3 L532.9,329.3 L535.6,329.4 L538.3,329.4 L540.9,329.5 L543.6,329.6 L546.3,329.6 L549,329.7 L551.6,329.7 L554.3,329.8 L557,329.9 L559.7,329.9 L562.3,330 L565,330 L567.7,330.1 L570.4,330.1 L573,330.2 L575.7,330.2 L578.4,330.3 L581,330.3 L583.7,330.4 L586.4,330.4 L589.1,330.5 L591.7,330.5 L594.4,330.6 L597.1,330.6 L599.8,330.7 L602.4,330.7 L605.1,330.7 " fill="none"/></g>
|
||||
</g>
|
||||
<g id="plotPoints" clip-path="url(#plot_window)"><g stroke="rgb(0,0,0)"></g>
|
||||
<g stroke="rgb(0,0,0)"></g>
|
||||
<g stroke="rgb(0,0,0)"></g>
|
||||
</g>
|
||||
<g id="limitPoints" stroke="rgb(119,136,153)" fill="rgb(250,235,215)"></g>
|
||||
<g id="legendBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="1"><rect x="595.6" y="62" width="142.4" height="105"/><rect x="595.6" y="62" width="142.4" height="105"/></g>
|
||||
<g id="legendPoints"><g stroke="rgb(0,0,139)" stroke-width="1"><line x1="610.6" y1="92" x2="625.6" y2="92"/></g>
|
||||
<g stroke="rgb(139,0,0)" stroke-width="1"><line x1="610.6" y1="122" x2="625.6" y2="122"/></g>
|
||||
<g stroke="rgb(0,100,0)" stroke-width="1"><line x1="610.6" y1="152" x2="625.6" y2="152"/></g>
|
||||
<g id="plotPoints" clip-path="url(#plot_window)"></g>
|
||||
<g id="legendBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="1"><rect x="619.1" y="62" width="118.9" height="105"/><rect x="619.1" y="62" width="118.9" height="105"/></g>
|
||||
<g id="legendPoints"><g stroke="rgb(0,0,139)" stroke-width="1"><line x1="634.1" y1="92" x2="649.1" y2="92"/></g>
|
||||
<g stroke="rgb(139,0,0)" stroke-width="1"><line x1="634.1" y1="122" x2="649.1" y2="122"/></g>
|
||||
<g stroke="rgb(0,100,0)" stroke-width="1"><line x1="634.1" y1="152" x2="649.1" y2="152"/></g>
|
||||
</g>
|
||||
<g id="legendText">
|
||||
<text x="633.1" y="92" font-size="15" font-family="Verdana">location=1</text>
|
||||
<text x="633.1" y="122" font-size="15" font-family="Verdana">location=2</text>
|
||||
<text x="633.1" y="152" font-size="15" font-family="Verdana">location=3</text></g>
|
||||
<text x="656.6" y="92" font-size="15" font-family="Verdana">scale=1</text>
|
||||
<text x="656.6" y="122" font-size="15" font-family="Verdana">scale=2</text>
|
||||
<text x="656.6" y="152" font-size="15" font-family="Verdana">scale=3</text></g>
|
||||
<g id="title">
|
||||
<text x="375" y="40" text-anchor="middle" font-size="20" font-family="Verdana">Pareto Distribution PDF (scale=1)</text></g>
|
||||
<text x="375" y="40" text-anchor="middle" font-size="20" font-family="Verdana">Pareto Distribution PDF (shape=1)</text></g>
|
||||
<g id="plotXValues"></g>
|
||||
<g id="plotYValues"></g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 34 KiB |
@@ -1,62 +1,63 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg width="750" height ="400" version="1.1" xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:ev="http://www.w3.org/2001/xml-events">
|
||||
|
||||
<svg width="750" height ="400" version="1.1"
|
||||
xmlns:svg ="http://www.w3.org/2000/svg"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:cc="http://web.resource.org/cc/"
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns ="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) -->
|
||||
<!-- Use, modification and distribution of Boost.Plot subject to the -->
|
||||
<!-- Boost Software License, Version 1.0.-->
|
||||
<!-- (See accompanying file LICENSE_1_0.txt -->
|
||||
<!-- or copy at http://www.boost.org/LICENSE_1_0.txt) -->
|
||||
|
||||
<clipPath id="plot_window"><rect x="71.2" y="63" width="517.2" height="274.2"/></clipPath>
|
||||
<clipPath id="plot_window"><rect x="71.2" y="63" width="517.2" height="271.4"/></clipPath>
|
||||
<g id="imageBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="0" y="0" width="750" height="400"/></g>
|
||||
<g id="plotBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="70.2" y="62" width="519.2" height="276.2"/></g>
|
||||
<g id="plotBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="2"><rect x="70.2" y="62" width="519.2" height="273.4"/></g>
|
||||
<g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="yMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="xMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g>
|
||||
<g id="xMajorGrid" stroke="rgb(200,220,255)" stroke-width="1"></g>
|
||||
<g id="yAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="70.2" y1="62" x2="70.2" y2="338.2"/></g>
|
||||
<g id="xAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="65.2" y1="338.2" x2="589.4" y2="338.2"/><line x1="65.2" y1="338.2" x2="589.4" y2="338.2"/></g>
|
||||
<g id="yMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M68.2,324.3 L70.2,324.3 M68.2,310.4 L70.2,310.4 M68.2,296.5 L70.2,296.5 M68.2,282.5 L70.2,282.5 M68.2,254.7 L70.2,254.7 M68.2,240.8 L70.2,240.8 M68.2,226.9 L70.2,226.9 M68.2,213 L70.2,213 M68.2,185.2 L70.2,185.2 M68.2,171.2 L70.2,171.2 M68.2,157.3 L70.2,157.3 M68.2,143.4 L70.2,143.4 M68.2,115.6 L70.2,115.6 M68.2,101.7 L70.2,101.7 M68.2,87.77 L70.2,87.77 M68.2,73.86 L70.2,73.86 M68.2,338.2 L70.2,338.2 "/></g>
|
||||
<g id="xMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M86.35,338.2 L86.35,340.2 M102.5,338.2 L102.5,340.2 M118.6,338.2 L118.6,340.2 M134.8,338.2 L134.8,340.2 M167.1,338.2 L167.1,340.2 M183.2,338.2 L183.2,340.2 M199.4,338.2 L199.4,340.2 M215.5,338.2 L215.5,340.2 M247.8,338.2 L247.8,340.2 M264,338.2 L264,340.2 M280.1,338.2 L280.1,340.2 M296.3,338.2 L296.3,340.2 M328.6,338.2 L328.6,340.2 M344.7,338.2 L344.7,340.2 M360.9,338.2 L360.9,340.2 M377,338.2 L377,340.2 M409.3,338.2 L409.3,340.2 M425.5,338.2 L425.5,340.2 M441.6,338.2 L441.6,340.2 M457.8,338.2 L457.8,340.2 M490.1,338.2 L490.1,340.2 M506.2,338.2 L506.2,340.2 M522.4,338.2 L522.4,340.2 M538.5,338.2 L538.5,340.2 M570.8,338.2 L570.8,340.2 M587,338.2 L587,340.2 "/></g>
|
||||
<g id="yMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M65.2,338.2 L70.2,338.2 M65.2,268.6 L70.2,268.6 M65.2,199.1 L70.2,199.1 M65.2,129.5 L70.2,129.5 M65.2,338.2 L70.2,338.2 "/></g>
|
||||
<g id="xMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M70.2,338.2 L70.2,343.2 M150.9,338.2 L150.9,343.2 M231.7,338.2 L231.7,343.2 M312.4,338.2 L312.4,343.2 M393.2,338.2 L393.2,343.2 M473.9,338.2 L473.9,343.2 M554.7,338.2 L554.7,343.2 "/></g>
|
||||
<g id="yAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="70.2" y1="62" x2="70.2" y2="335.4"/></g>
|
||||
<g id="xAxis" stroke="rgb(0,0,0)" stroke-width="1"><line x1="65.2" y1="335.4" x2="589.4" y2="335.4"/><line x1="65.2" y1="335.4" x2="589.4" y2="335.4"/></g>
|
||||
<g id="yMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M68.2,321.6 L70.2,321.6 M68.2,307.9 L70.2,307.9 M68.2,294.1 L70.2,294.1 M68.2,280.3 L70.2,280.3 M68.2,252.8 L70.2,252.8 M68.2,239 L70.2,239 M68.2,225.2 L70.2,225.2 M68.2,211.5 L70.2,211.5 M68.2,183.9 L70.2,183.9 M68.2,170.1 L70.2,170.1 M68.2,156.4 L70.2,156.4 M68.2,142.6 L70.2,142.6 M68.2,115.1 L70.2,115.1 M68.2,101.3 L70.2,101.3 M68.2,87.51 L70.2,87.51 M68.2,73.74 L70.2,73.74 M68.2,335.4 L70.2,335.4 " fill="none"/></g>
|
||||
<g id="xMinorTicks" stroke="rgb(0,0,0)" stroke-width="1"><path d="M86.35,335.4 L86.35,337.4 M102.5,335.4 L102.5,337.4 M118.6,335.4 L118.6,337.4 M134.8,335.4 L134.8,337.4 M167.1,335.4 L167.1,337.4 M183.2,335.4 L183.2,337.4 M199.4,335.4 L199.4,337.4 M215.5,335.4 L215.5,337.4 M247.8,335.4 L247.8,337.4 M264,335.4 L264,337.4 M280.1,335.4 L280.1,337.4 M296.3,335.4 L296.3,337.4 M328.6,335.4 L328.6,337.4 M344.7,335.4 L344.7,337.4 M360.9,335.4 L360.9,337.4 M377,335.4 L377,337.4 M409.3,335.4 L409.3,337.4 M425.5,335.4 L425.5,337.4 M441.6,335.4 L441.6,337.4 M457.8,335.4 L457.8,337.4 M490.1,335.4 L490.1,337.4 M506.2,335.4 L506.2,337.4 M522.4,335.4 L522.4,337.4 M538.5,335.4 L538.5,337.4 M570.8,335.4 L570.8,337.4 M587,335.4 L587,337.4 " fill="none"/></g>
|
||||
<g id="yMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M65.2,335.4 L70.2,335.4 M65.2,266.5 L70.2,266.5 M65.2,197.7 L70.2,197.7 M65.2,128.8 L70.2,128.8 M65.2,335.4 L70.2,335.4 " fill="none"/></g>
|
||||
<g id="xMajorTicks" stroke="rgb(0,0,0)" stroke-width="2"><path d="M70.2,335.4 L70.2,340.4 M150.9,335.4 L150.9,340.4 M231.7,335.4 L231.7,340.4 M312.4,335.4 L312.4,340.4 M393.2,335.4 L393.2,340.4 M473.9,335.4 L473.9,340.4 M554.7,335.4 L554.7,340.4 " fill="none"/></g>
|
||||
<g id="plotLabels">
|
||||
<text x="70.2" y="357.6" text-anchor="middle" font-size="12" font-family="Verdana">1</text>
|
||||
<text x="150.9" y="357.6" text-anchor="middle" font-size="12" font-family="Verdana">2</text>
|
||||
<text x="231.7" y="357.6" text-anchor="middle" font-size="12" font-family="Verdana">3</text>
|
||||
<text x="312.4" y="357.6" text-anchor="middle" font-size="12" font-family="Verdana">4</text>
|
||||
<text x="393.2" y="357.6" text-anchor="middle" font-size="12" font-family="Verdana">5</text>
|
||||
<text x="473.9" y="357.6" text-anchor="middle" font-size="12" font-family="Verdana">6</text>
|
||||
<text x="554.7" y="357.6" text-anchor="middle" font-size="12" font-family="Verdana">7</text>
|
||||
<text x="59.2" y="340.6" text-anchor="end" font-size="12" font-family="Verdana">0</text>
|
||||
<text x="59.2" y="271" text-anchor="end" font-size="12" font-family="Verdana">0.5</text>
|
||||
<text x="59.2" y="201.5" text-anchor="end" font-size="12" font-family="Verdana">1</text>
|
||||
<text x="59.2" y="131.9" text-anchor="end" font-size="12" font-family="Verdana">1.5</text>
|
||||
<text x="59.2" y="340.6" text-anchor="end" font-size="12" font-family="Verdana">0</text></g>
|
||||
<text x="70.2" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">1</text>
|
||||
<text x="150.9" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">2</text>
|
||||
<text x="231.7" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">3</text>
|
||||
<text x="312.4" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">4</text>
|
||||
<text x="393.2" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">5</text>
|
||||
<text x="473.9" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">6</text>
|
||||
<text x="554.7" y="357.2" text-anchor="middle" font-size="14" font-family="Verdana">7</text>
|
||||
<text x="59.2" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text>
|
||||
<text x="59.2" y="268.9" text-anchor="end" font-size="12" font-family="Verdana">0.5</text>
|
||||
<text x="59.2" y="200.1" text-anchor="end" font-size="12" font-family="Verdana">1</text>
|
||||
<text x="59.2" y="131.2" text-anchor="end" font-size="12" font-family="Verdana">1.5</text>
|
||||
<text x="59.2" y="337.8" text-anchor="end" font-size="12" font-family="Verdana">0</text></g>
|
||||
<g id="yLabel">
|
||||
<text x="30.2" y="200.1" text-anchor="middle" transform = "rotate(-90 30.2 200.1 )" font-size="14" font-family="Verdana">Probability</text></g>
|
||||
<text x="30.2" y="198.7" text-anchor="middle" transform = "rotate(-90 30.2 198.7 )" font-size="14" font-family="Verdana">Probability</text></g>
|
||||
<g id="xLabel">
|
||||
<text x="329.8" y="384" text-anchor="middle" font-size="14" font-family="Verdana">Random Variable</text></g>
|
||||
<g id="plotLines" stroke-width="2"><g clip-path="url(#plot_window)" stroke="rgb(0,0,139)" stroke-width="1"><path d="M70.2,268.6 L72.8,271.9 L75.39,274.8 L77.99,277.6 L80.58,280.2 L83.18,282.6 L85.78,284.8 L88.37,286.9 L90.97,288.9 L93.57,290.7 L96.16,292.4 L98.76,294 L101.4,295.6 L104,297 L106.5,298.4 L109.1,299.7 L111.7,300.9 L114.3,302 L116.9,303.1 L119.5,304.2 L122.1,305.2 L124.7,306.1 L127.3,307 L129.9,307.9 L132.5,308.7 L135.1,309.5 L137.7,310.2 L140.3,311 L142.9,311.6 L145.5,312.3 L148.1,312.9 L150.7,313.5 L153.3,314.1 L155.9,314.7 L158.5,315.2 L161.1,315.7 L163.7,316.2 L166.3,316.7 L168.9,317.2 L171.5,317.6 L174,318.1 L176.6,318.5 L179.2,318.9 L181.8,319.3 L184.4,319.7 L187,320 L189.6,320.4 L192.2,320.7 L194.8,321 L197.4,321.4 L200,321.7 L202.6,322 L205.2,322.3 L207.8,322.6 L210.4,322.8 L213,323.1 L215.6,323.4 L218.2,323.6 L220.8,323.9 L223.4,324.1 L226,324.3 L228.6,324.5 L231.2,324.8 L233.8,325 L236.4,325.2 L239,325.4 L241.5,325.6 L244.1,325.8 L246.7,326 L249.3,326.2 L251.9,326.3 L254.5,326.5 L257.1,326.7 L259.7,326.8 L262.3,327 L264.9,327.2 L267.5,327.3 L270.1,327.5 L272.7,327.6 L275.3,327.8 L277.9,327.9 L280.5,328 L283.1,328.2 L285.7,328.3 L288.3,328.4 L290.9,328.6 L293.5,328.7 L296.1,328.8 L298.7,328.9 L301.3,329 L303.9,329.1 L306.5,329.3 L309.1,329.4 L311.6,329.5 L314.2,329.6 L316.8,329.7 L319.4,329.8 L322,329.9 L324.6,330 L327.2,330.1 L329.8,330.2 L332.4,330.3 L335,330.3 L337.6,330.4 L340.2,330.5 L342.8,330.6 L345.4,330.7 L348,330.8 L350.6,330.8 L353.2,330.9 L355.8,331 L358.4,331.1 L361,331.2 L363.6,331.2 L366.2,331.3 L368.8,331.4 L371.4,331.4 L374,331.5 L376.6,331.6 L379.1,331.6 L381.7,331.7 L384.3,331.8 L386.9,331.8 L389.5,331.9 L392.1,332 L394.7,332 L397.3,332.1 L399.9,332.1 L402.5,332.2 L405.1,332.2 L407.7,332.3 L410.3,332.4 L412.9,332.4 L415.5,332.5 L418.1,332.5 L420.7,332.6 L423.3,332.6 L425.9,332.7 L428.5,332.7 L431.1,332.8 L433.7,332.8 L436.3,332.9 L438.9,332.9 L441.5,332.9 L444.1,333 L446.6,333 L449.2,333.1 L451.8,333.1 L454.4,333.2 L457,333.2 L459.6,333.2 L462.2,333.3 L464.8,333.3 L467.4,333.4 L470,333.4 L472.6,333.4 L475.2,333.5 L477.8,333.5 L480.4,333.6 L483,333.6 L485.6,333.6 L488.2,333.7 L490.8,333.7 L493.4,333.7 L496,333.8 L498.6,333.8 L501.2,333.8 L503.8,333.9 L506.4,333.9 L509,333.9 L511.6,334 L514.2,334 L516.7,334 L519.3,334.1 L521.9,334.1 L524.5,334.1 L527.1,334.2 L529.7,334.2 L532.3,334.2 L534.9,334.2 L537.5,334.3 L540.1,334.3 L542.7,334.3 L545.3,334.3 L547.9,334.4 L550.5,334.4 L553.1,334.4 L555.7,334.5 L558.3,334.5 L560.9,334.5 L563.5,334.5 L566.1,334.6 L568.7,334.6 L571.3,334.6 L573.9,334.6 L576.5,334.7 L579.1,334.7 L581.7,334.7 L584.2,334.7 L586.8,334.7 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(139,0,0)" stroke-width="1"><path d="M70.2,199.1 L72.8,207.6 L75.39,215.4 L77.99,222.5 L80.58,229 L83.18,234.9 L85.78,240.4 L88.37,245.5 L90.97,250.2 L93.57,254.5 L96.16,258.5 L98.76,262.3 L101.4,265.8 L104,269 L106.5,272 L109.1,274.9 L111.7,277.5 L114.3,280 L116.9,282.4 L119.5,284.6 L122.1,286.7 L124.7,288.6 L127.3,290.5 L129.9,292.2 L132.5,293.9 L135.1,295.4 L137.7,296.9 L140.3,298.3 L142.9,299.7 L145.5,300.9 L148.1,302.2 L150.7,303.3 L153.3,304.4 L155.9,305.4 L158.5,306.4 L161.1,307.4 L163.7,308.3 L166.3,309.2 L168.9,310 L171.5,310.8 L174,311.6 L176.6,312.3 L179.2,313 L181.8,313.7 L184.4,314.3 L187,315 L189.6,315.6 L192.2,316.1 L194.8,316.7 L197.4,317.2 L200,317.7 L202.6,318.2 L205.2,318.7 L207.8,319.2 L210.4,319.6 L213,320 L215.6,320.5 L218.2,320.9 L220.8,321.2 L223.4,321.6 L226,322 L228.6,322.3 L231.2,322.7 L233.8,323 L236.4,323.3 L239,323.6 L241.5,323.9 L244.1,324.2 L246.7,324.5 L249.3,324.8 L251.9,325 L254.5,325.3 L257.1,325.5 L259.7,325.8 L262.3,326 L264.9,326.2 L267.5,326.5 L270.1,326.7 L272.7,326.9 L275.3,327.1 L277.9,327.3 L280.5,327.5 L283.1,327.7 L285.7,327.9 L288.3,328 L290.9,328.2 L293.5,328.4 L296.1,328.6 L298.7,328.7 L301.3,328.9 L303.9,329 L306.5,329.2 L309.1,329.3 L311.6,329.5 L314.2,329.6 L316.8,329.7 L319.4,329.9 L322,330 L324.6,330.1 L327.2,330.2 L329.8,330.4 L332.4,330.5 L335,330.6 L337.6,330.7 L340.2,330.8 L342.8,330.9 L345.4,331 L348,331.1 L350.6,331.2 L353.2,331.3 L355.8,331.4 L358.4,331.5 L361,331.6 L363.6,331.7 L366.2,331.8 L368.8,331.9 L371.4,332 L374,332.1 L376.6,332.1 L379.1,332.2 L381.7,332.3 L384.3,332.4 L386.9,332.5 L389.5,332.5 L392.1,332.6 L394.7,332.7 L397.3,332.7 L399.9,332.8 L402.5,332.9 L405.1,332.9 L407.7,333 L410.3,333.1 L412.9,333.1 L415.5,333.2 L418.1,333.3 L420.7,333.3 L423.3,333.4 L425.9,333.4 L428.5,333.5 L431.1,333.5 L433.7,333.6 L436.3,333.7 L438.9,333.7 L441.5,333.8 L444.1,333.8 L446.6,333.9 L449.2,333.9 L451.8,334 L454.4,334 L457,334.1 L459.6,334.1 L462.2,334.1 L464.8,334.2 L467.4,334.2 L470,334.3 L472.6,334.3 L475.2,334.4 L477.8,334.4 L480.4,334.4 L483,334.5 L485.6,334.5 L488.2,334.6 L490.8,334.6 L493.4,334.6 L496,334.7 L498.6,334.7 L501.2,334.7 L503.8,334.8 L506.4,334.8 L509,334.8 L511.6,334.9 L514.2,334.9 L516.7,334.9 L519.3,335 L521.9,335 L524.5,335 L527.1,335.1 L529.7,335.1 L532.3,335.1 L534.9,335.2 L537.5,335.2 L540.1,335.2 L542.7,335.2 L545.3,335.3 L547.9,335.3 L550.5,335.3 L553.1,335.3 L555.7,335.4 L558.3,335.4 L560.9,335.4 L563.5,335.4 L566.1,335.5 L568.7,335.5 L571.3,335.5 L573.9,335.5 L576.5,335.6 L579.1,335.6 L581.7,335.6 L584.2,335.6 L586.8,335.7 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(0,100,0)" stroke-width="1"><path d="M70.2,59.95 L72.8,85.15 L75.39,107.4 L77.99,127.1 L80.58,144.6 L83.18,160.3 L85.78,174.3 L88.37,186.9 L90.97,198.2 L93.57,208.4 L96.16,217.6 L98.76,226 L101.4,233.7 L104,240.6 L106.5,247 L109.1,252.8 L111.7,258.1 L114.3,263 L116.9,267.5 L119.5,271.6 L122.1,275.5 L124.7,279 L127.3,282.3 L129.9,285.3 L132.5,288.2 L135.1,290.8 L137.7,293.2 L140.3,295.5 L142.9,297.7 L145.5,299.6 L148.1,301.5 L150.7,303.2 L153.3,304.9 L155.9,306.4 L158.5,307.9 L161.1,309.2 L163.7,310.5 L166.3,311.7 L168.9,312.8 L171.5,313.9 L174,314.9 L176.6,315.9 L179.2,316.8 L181.8,317.6 L184.4,318.4 L187,319.2 L189.6,319.9 L192.2,320.6 L194.8,321.3 L197.4,321.9 L200,322.5 L202.6,323.1 L205.2,323.6 L207.8,324.1 L210.4,324.6 L213,325.1 L215.6,325.5 L218.2,326 L220.8,326.4 L223.4,326.8 L226,327.1 L228.6,327.5 L231.2,327.8 L233.8,328.2 L236.4,328.5 L239,328.8 L241.5,329.1 L244.1,329.3 L246.7,329.6 L249.3,329.9 L251.9,330.1 L254.5,330.3 L257.1,330.6 L259.7,330.8 L262.3,331 L264.9,331.2 L267.5,331.4 L270.1,331.6 L272.7,331.8 L275.3,331.9 L277.9,332.1 L280.5,332.3 L283.1,332.4 L285.7,332.6 L288.3,332.7 L290.9,332.9 L293.5,333 L296.1,333.1 L298.7,333.2 L301.3,333.4 L303.9,333.5 L306.5,333.6 L309.1,333.7 L311.6,333.8 L314.2,333.9 L316.8,334 L319.4,334.1 L322,334.2 L324.6,334.3 L327.2,334.4 L329.8,334.5 L332.4,334.6 L335,334.6 L337.6,334.7 L340.2,334.8 L342.8,334.9 L345.4,335 L348,335 L350.6,335.1 L353.2,335.2 L355.8,335.2 L358.4,335.3 L361,335.3 L363.6,335.4 L366.2,335.5 L368.8,335.5 L371.4,335.6 L374,335.6 L376.6,335.7 L379.1,335.7 L381.7,335.8 L384.3,335.8 L386.9,335.9 L389.5,335.9 L392.1,336 L394.7,336 L397.3,336 L399.9,336.1 L402.5,336.1 L405.1,336.2 L407.7,336.2 L410.3,336.2 L412.9,336.3 L415.5,336.3 L418.1,336.3 L420.7,336.4 L423.3,336.4 L425.9,336.4 L428.5,336.5 L431.1,336.5 L433.7,336.5 L436.3,336.6 L438.9,336.6 L441.5,336.6 L444.1,336.6 L446.6,336.7 L449.2,336.7 L451.8,336.7 L454.4,336.7 L457,336.8 L459.6,336.8 L462.2,336.8 L464.8,336.8 L467.4,336.9 L470,336.9 L472.6,336.9 L475.2,336.9 L477.8,336.9 L480.4,337 L483,337 L485.6,337 L488.2,337 L490.8,337 L493.4,337.1 L496,337.1 L498.6,337.1 L501.2,337.1 L503.8,337.1 L506.4,337.1 L509,337.2 L511.6,337.2 L514.2,337.2 L516.7,337.2 L519.3,337.2 L521.9,337.2 L524.5,337.2 L527.1,337.3 L529.7,337.3 L532.3,337.3 L534.9,337.3 L537.5,337.3 L540.1,337.3 L542.7,337.3 L545.3,337.3 L547.9,337.4 L550.5,337.4 L553.1,337.4 L555.7,337.4 L558.3,337.4 L560.9,337.4 L563.5,337.4 L566.1,337.4 L568.7,337.4 L571.3,337.5 L573.9,337.5 L576.5,337.5 L579.1,337.5 L581.7,337.5 L584.2,337.5 L586.8,337.5 " fill="none"/></g>
|
||||
<text x="329.8" y="388" text-anchor="middle" font-size="14" font-family="Verdana">Random Variable</text></g>
|
||||
<g id="plotLines" stroke-width="2"><g clip-path="url(#plot_window)" stroke="rgb(0,0,139)" stroke-width="1"><path d="M70.2,266.5 L72.8,269.7 L75.39,272.7 L77.99,275.4 L80.58,278 L83.18,280.3 L85.78,282.6 L88.37,284.6 L90.97,286.6 L93.57,288.4 L96.16,290.1 L98.76,291.7 L101.4,293.2 L104,294.6 L106.5,296 L109.1,297.2 L111.7,298.5 L114.3,299.6 L116.9,300.7 L119.5,301.7 L122.1,302.7 L124.7,303.6 L127.3,304.5 L129.9,305.4 L132.5,306.2 L135.1,307 L137.7,307.7 L140.3,308.4 L142.9,309.1 L145.5,309.8 L148.1,310.4 L150.7,311 L153.3,311.6 L155.9,312.1 L158.5,312.7 L161.1,313.2 L163.7,313.7 L166.3,314.1 L168.9,314.6 L171.5,315.1 L174,315.5 L176.6,315.9 L179.2,316.3 L181.8,316.7 L184.4,317 L187,317.4 L189.6,317.8 L192.2,318.1 L194.8,318.4 L197.4,318.7 L200,319 L202.6,319.3 L205.2,319.6 L207.8,319.9 L210.4,320.2 L213,320.5 L215.6,320.7 L218.2,321 L220.8,321.2 L223.4,321.4 L226,321.7 L228.6,321.9 L231.2,322.1 L233.8,322.3 L236.4,322.5 L239,322.7 L241.5,322.9 L244.1,323.1 L246.7,323.3 L249.3,323.5 L251.9,323.7 L254.5,323.8 L257.1,324 L259.7,324.2 L262.3,324.3 L264.9,324.5 L267.5,324.6 L270.1,324.8 L272.7,324.9 L275.3,325.1 L277.9,325.2 L280.5,325.3 L283.1,325.5 L285.7,325.6 L288.3,325.7 L290.9,325.9 L293.5,326 L296.1,326.1 L298.7,326.2 L301.3,326.3 L303.9,326.4 L306.5,326.5 L309.1,326.7 L311.6,326.8 L314.2,326.9 L316.8,327 L319.4,327.1 L322,327.2 L324.6,327.3 L327.2,327.4 L329.8,327.4 L332.4,327.5 L335,327.6 L337.6,327.7 L340.2,327.8 L342.8,327.9 L345.4,328 L348,328 L350.6,328.1 L353.2,328.2 L355.8,328.3 L358.4,328.3 L361,328.4 L363.6,328.5 L366.2,328.6 L368.8,328.6 L371.4,328.7 L374,328.8 L376.6,328.8 L379.1,328.9 L381.7,329 L384.3,329 L386.9,329.1 L389.5,329.2 L392.1,329.2 L394.7,329.3 L397.3,329.3 L399.9,329.4 L402.5,329.4 L405.1,329.5 L407.7,329.6 L410.3,329.6 L412.9,329.7 L415.5,329.7 L418.1,329.8 L420.7,329.8 L423.3,329.9 L425.9,329.9 L428.5,330 L431.1,330 L433.7,330.1 L436.3,330.1 L438.9,330.2 L441.5,330.2 L444.1,330.2 L446.6,330.3 L449.2,330.3 L451.8,330.4 L454.4,330.4 L457,330.5 L459.6,330.5 L462.2,330.5 L464.8,330.6 L467.4,330.6 L470,330.7 L472.6,330.7 L475.2,330.7 L477.8,330.8 L480.4,330.8 L483,330.8 L485.6,330.9 L488.2,330.9 L490.8,330.9 L493.4,331 L496,331 L498.6,331.1 L501.2,331.1 L503.8,331.1 L506.4,331.1 L509,331.2 L511.6,331.2 L514.2,331.2 L516.7,331.3 L519.3,331.3 L521.9,331.3 L524.5,331.4 L527.1,331.4 L529.7,331.4 L532.3,331.5 L534.9,331.5 L537.5,331.5 L540.1,331.5 L542.7,331.6 L545.3,331.6 L547.9,331.6 L550.5,331.6 L553.1,331.7 L555.7,331.7 L558.3,331.7 L560.9,331.7 L563.5,331.8 L566.1,331.8 L568.7,331.8 L571.3,331.8 L573.9,331.9 L576.5,331.9 L579.1,331.9 L581.7,331.9 L584.2,332 L586.8,332 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(139,0,0)" stroke-width="1"><path d="M70.2,197.7 L72.8,206.1 L75.39,213.8 L77.99,220.8 L80.58,227.3 L83.18,233.2 L85.78,238.6 L88.37,243.6 L90.97,248.3 L93.57,252.6 L96.16,256.5 L98.76,260.2 L101.4,263.7 L104,266.9 L106.5,269.9 L109.1,272.7 L111.7,275.4 L114.3,277.8 L116.9,280.1 L119.5,282.3 L122.1,284.4 L124.7,286.3 L127.3,288.2 L129.9,289.9 L132.5,291.5 L135.1,293.1 L137.7,294.5 L140.3,295.9 L142.9,297.3 L145.5,298.5 L148.1,299.7 L150.7,300.9 L153.3,301.9 L155.9,303 L158.5,304 L161.1,304.9 L163.7,305.8 L166.3,306.7 L168.9,307.5 L171.5,308.3 L174,309 L176.6,309.8 L179.2,310.5 L181.8,311.1 L184.4,311.8 L187,312.4 L189.6,313 L192.2,313.6 L194.8,314.1 L197.4,314.6 L200,315.1 L202.6,315.6 L205.2,316.1 L207.8,316.6 L210.4,317 L213,317.4 L215.6,317.8 L218.2,318.2 L220.8,318.6 L223.4,319 L226,319.3 L228.6,319.7 L231.2,320 L233.8,320.4 L236.4,320.7 L239,321 L241.5,321.3 L244.1,321.6 L246.7,321.8 L249.3,322.1 L251.9,322.4 L254.5,322.6 L257.1,322.9 L259.7,323.1 L262.3,323.3 L264.9,323.6 L267.5,323.8 L270.1,324 L272.7,324.2 L275.3,324.4 L277.9,324.6 L280.5,324.8 L283.1,325 L285.7,325.2 L288.3,325.3 L290.9,325.5 L293.5,325.7 L296.1,325.8 L298.7,326 L301.3,326.2 L303.9,326.3 L306.5,326.5 L309.1,326.6 L311.6,326.8 L314.2,326.9 L316.8,327 L319.4,327.2 L322,327.3 L324.6,327.4 L327.2,327.5 L329.8,327.6 L332.4,327.8 L335,327.9 L337.6,328 L340.2,328.1 L342.8,328.2 L345.4,328.3 L348,328.4 L350.6,328.5 L353.2,328.6 L355.8,328.7 L358.4,328.8 L361,328.9 L363.6,329 L366.2,329.1 L368.8,329.2 L371.4,329.2 L374,329.3 L376.6,329.4 L379.1,329.5 L381.7,329.6 L384.3,329.6 L386.9,329.7 L389.5,329.8 L392.1,329.9 L394.7,329.9 L397.3,330 L399.9,330.1 L402.5,330.1 L405.1,330.2 L407.7,330.3 L410.3,330.3 L412.9,330.4 L415.5,330.5 L418.1,330.5 L420.7,330.6 L423.3,330.6 L425.9,330.7 L428.5,330.7 L431.1,330.8 L433.7,330.8 L436.3,330.9 L438.9,331 L441.5,331 L444.1,331.1 L446.6,331.1 L449.2,331.2 L451.8,331.2 L454.4,331.2 L457,331.3 L459.6,331.3 L462.2,331.4 L464.8,331.4 L467.4,331.5 L470,331.5 L472.6,331.6 L475.2,331.6 L477.8,331.6 L480.4,331.7 L483,331.7 L485.6,331.8 L488.2,331.8 L490.8,331.8 L493.4,331.9 L496,331.9 L498.6,331.9 L501.2,332 L503.8,332 L506.4,332 L509,332.1 L511.6,332.1 L514.2,332.1 L516.7,332.2 L519.3,332.2 L521.9,332.2 L524.5,332.3 L527.1,332.3 L529.7,332.3 L532.3,332.4 L534.9,332.4 L537.5,332.4 L540.1,332.4 L542.7,332.5 L545.3,332.5 L547.9,332.5 L550.5,332.5 L553.1,332.6 L555.7,332.6 L558.3,332.6 L560.9,332.7 L563.5,332.7 L566.1,332.7 L568.7,332.7 L571.3,332.7 L573.9,332.8 L576.5,332.8 L579.1,332.8 L581.7,332.8 L584.2,332.9 L586.8,332.9 " fill="none"/></g>
|
||||
<g clip-path="url(#plot_window)" stroke="rgb(0,100,0)" stroke-width="1"><path d="M70.2,59.97 L72.8,84.91 L75.39,106.9 L77.99,126.5 L80.58,143.8 L83.18,159.3 L85.78,173.2 L88.37,185.6 L90.97,196.8 L93.57,206.9 L96.16,216.1 L98.76,224.4 L101.4,231.9 L104,238.8 L106.5,245.1 L109.1,250.8 L111.7,256.1 L114.3,260.9 L116.9,265.4 L119.5,269.5 L122.1,273.3 L124.7,276.8 L127.3,280.1 L129.9,283.1 L132.5,285.9 L135.1,288.5 L137.7,290.9 L140.3,293.2 L142.9,295.3 L145.5,297.2 L148.1,299.1 L150.7,300.8 L153.3,302.4 L155.9,303.9 L158.5,305.4 L161.1,306.7 L163.7,308 L166.3,309.2 L168.9,310.3 L171.5,311.3 L174,312.3 L176.6,313.3 L179.2,314.2 L181.8,315 L184.4,315.8 L187,316.6 L189.6,317.3 L192.2,318 L194.8,318.7 L197.4,319.3 L200,319.9 L202.6,320.4 L205.2,321 L207.8,321.5 L210.4,322 L213,322.4 L215.6,322.9 L218.2,323.3 L220.8,323.7 L223.4,324.1 L226,324.4 L228.6,324.8 L231.2,325.1 L233.8,325.5 L236.4,325.8 L239,326.1 L241.5,326.3 L244.1,326.6 L246.7,326.9 L249.3,327.1 L251.9,327.4 L254.5,327.6 L257.1,327.8 L259.7,328.1 L262.3,328.3 L264.9,328.5 L267.5,328.7 L270.1,328.8 L272.7,329 L275.3,329.2 L277.9,329.4 L280.5,329.5 L283.1,329.7 L285.7,329.8 L288.3,330 L290.9,330.1 L293.5,330.2 L296.1,330.4 L298.7,330.5 L301.3,330.6 L303.9,330.7 L306.5,330.8 L309.1,331 L311.6,331.1 L314.2,331.2 L316.8,331.3 L319.4,331.4 L322,331.5 L324.6,331.5 L327.2,331.6 L329.8,331.7 L332.4,331.8 L335,331.9 L337.6,332 L340.2,332 L342.8,332.1 L345.4,332.2 L348,332.3 L350.6,332.3 L353.2,332.4 L355.8,332.5 L358.4,332.5 L361,332.6 L363.6,332.6 L366.2,332.7 L368.8,332.7 L371.4,332.8 L374,332.8 L376.6,332.9 L379.1,332.9 L381.7,333 L384.3,333 L386.9,333.1 L389.5,333.1 L392.1,333.2 L394.7,333.2 L397.3,333.3 L399.9,333.3 L402.5,333.3 L405.1,333.4 L407.7,333.4 L410.3,333.5 L412.9,333.5 L415.5,333.5 L418.1,333.6 L420.7,333.6 L423.3,333.6 L425.9,333.7 L428.5,333.7 L431.1,333.7 L433.7,333.7 L436.3,333.8 L438.9,333.8 L441.5,333.8 L444.1,333.9 L446.6,333.9 L449.2,333.9 L451.8,333.9 L454.4,334 L457,334 L459.6,334 L462.2,334 L464.8,334.1 L467.4,334.1 L470,334.1 L472.6,334.1 L475.2,334.1 L477.8,334.2 L480.4,334.2 L483,334.2 L485.6,334.2 L488.2,334.2 L490.8,334.2 L493.4,334.3 L496,334.3 L498.6,334.3 L501.2,334.3 L503.8,334.3 L506.4,334.4 L509,334.4 L511.6,334.4 L514.2,334.4 L516.7,334.4 L519.3,334.4 L521.9,334.4 L524.5,334.5 L527.1,334.5 L529.7,334.5 L532.3,334.5 L534.9,334.5 L537.5,334.5 L540.1,334.5 L542.7,334.5 L545.3,334.6 L547.9,334.6 L550.5,334.6 L553.1,334.6 L555.7,334.6 L558.3,334.6 L560.9,334.6 L563.5,334.6 L566.1,334.6 L568.7,334.7 L571.3,334.7 L573.9,334.7 L576.5,334.7 L579.1,334.7 L581.7,334.7 L584.2,334.7 L586.8,334.7 " fill="none"/></g>
|
||||
</g>
|
||||
<g id="plotPoints" clip-path="url(#plot_window)"><g stroke="rgb(0,0,0)"></g>
|
||||
<g stroke="rgb(0,0,0)"></g>
|
||||
<g stroke="rgb(0,0,0)"></g>
|
||||
</g>
|
||||
<g id="limitPoints" stroke="rgb(119,136,153)" fill="rgb(250,235,215)"></g>
|
||||
<g id="plotPoints" clip-path="url(#plot_window)"></g>
|
||||
<g id="legendBackground" stroke="rgb(119,136,153)" fill="rgb(255,255,255)" stroke-width="1"><rect x="603.4" y="62" width="134.6" height="105"/><rect x="603.4" y="62" width="134.6" height="105"/></g>
|
||||
<g id="legendPoints"><g stroke="rgb(0,0,139)" stroke-width="1"><line x1="618.4" y1="92" x2="633.4" y2="92"/></g>
|
||||
<g stroke="rgb(139,0,0)" stroke-width="1"><line x1="618.4" y1="122" x2="633.4" y2="122"/></g>
|
||||
<g stroke="rgb(0,100,0)" stroke-width="1"><line x1="618.4" y1="152" x2="633.4" y2="152"/></g>
|
||||
</g>
|
||||
<g id="legendText">
|
||||
<text x="640.9" y="92" font-size="15" font-family="Verdana">scale=0.5</text>
|
||||
<text x="640.9" y="122" font-size="15" font-family="Verdana">scale=1</text>
|
||||
<text x="640.9" y="152" font-size="15" font-family="Verdana">scale=2</text></g>
|
||||
<text x="640.9" y="92" font-size="15" font-family="Verdana">shape=0.5</text>
|
||||
<text x="640.9" y="122" font-size="15" font-family="Verdana">shape=1</text>
|
||||
<text x="640.9" y="152" font-size="15" font-family="Verdana">shape=2</text></g>
|
||||
<g id="title">
|
||||
<text x="375" y="40" text-anchor="middle" font-size="20" font-family="Verdana">Pareto Distribution PDF (location=1)</text></g>
|
||||
<text x="375" y="40" text-anchor="middle" font-size="20" font-family="Verdana">Pareto Distribution PDF (scale=1)</text></g>
|
||||
<g id="plotXValues"></g>
|
||||
<g id="plotYValues"></g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Math Toolkit</title>
|
||||
<link rel="stylesheet" href="../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="index.html" title="Math Toolkit">
|
||||
<link rel="next" href="math_toolkit/main_overview.html" title="Overview">
|
||||
</head>
|
||||
@@ -42,11 +42,18 @@
|
||||
<div class="author"><h3 class="author">
|
||||
<span class="firstname">Johan</span> <span class="surname">Råde</span>
|
||||
</h3></div>
|
||||
<div class="author"><h3 class="author">
|
||||
<span class="firstname">Gautam</span> <span class="surname">Sewani</span>
|
||||
</h3></div>
|
||||
<div class="author"><h3 class="author">
|
||||
<span class="firstname">Thijs</span> <span class="surname">van den Berg</span>
|
||||
</h3></div>
|
||||
</div></div>
|
||||
<div><p class="copyright">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde</p></div>
|
||||
<div><p class="copyright">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg</p></div>
|
||||
<div><div class="legalnotice">
|
||||
<a name="id527114"></a><p>
|
||||
<a name="id761748"></a><p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
@@ -72,9 +79,12 @@
|
||||
and Policies</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/main_overview/threads.html"> Thread Safety</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/main_overview/perf_over.html"> Performance</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/main_overview/building.html"> If and How to Build
|
||||
the Library and its Examples and Tests</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/main_overview/history1.html"> History and What's
|
||||
New</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/main_overview/tr1.html"> C99 and TR1 C Functions</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/main_overview/tr1.html"> C99 and C++ TR1 C-style
|
||||
Functions</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/main_overview/contact.html"> Contact Info and
|
||||
Support</a></span></dt>
|
||||
</dl></dd>
|
||||
@@ -83,7 +93,20 @@
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut.html"> Statistical Distributions
|
||||
Tutorial</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/overview.html"> Overview</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/overview.html"> Overview of Distributions</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/overview/headers.html"> Headers
|
||||
and Namespaces</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/overview/objects.html"> Distributions
|
||||
are Objects</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/overview/generic.html"> Generic
|
||||
operations common to all distributions are non-member functions</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/overview/complements.html">
|
||||
Complements are supported too - and when to use them</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/overview/parameters.html">
|
||||
Parameters can be calculated</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/overview/summary.html"> Summary</a></span></dt>
|
||||
</dl></dd>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/weg.html"> Worked Examples</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/weg/dist_construct_eg.html">
|
||||
@@ -108,6 +131,8 @@
|
||||
and Scale Examples</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/weg/nag_library.html"> Comparison
|
||||
with C, R, FORTRAN-style Free Functions</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/weg/c_sharp.html"> Using the
|
||||
Distributions from Within C#</a></span></dt>
|
||||
</dl></dd>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/stat_tut/variates.html"> Random Variates
|
||||
and Distribution Parameters</a></span></dt>
|
||||
@@ -137,6 +162,12 @@
|
||||
<dt><span class="section"><a href="math_toolkit/dist/dist_ref/dists/f_dist.html"> F Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/dist_ref/dists/gamma_dist.html"> Gamma
|
||||
(and Erlang) Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/dist_ref/dists/hypergeometric_dist.html">
|
||||
Hypergeometric Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/dist_ref/dists/laplace_dist.html"> Laplace
|
||||
Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/dist_ref/dists/logistic_dist.html">
|
||||
Logistic Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/dist_ref/dists/lognormal_dist.html">
|
||||
Log Normal Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/dist/dist_ref/dists/negative_binomial_dist.html">
|
||||
@@ -287,39 +318,43 @@
|
||||
<dt><span class="section"><a href="math_toolkit/special/inv_hyper/asinh.html"> asinh</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/special/inv_hyper/atanh.html"> atanh</a></span></dt>
|
||||
</dl></dd>
|
||||
<dt><span class="section"><a href="math_toolkit/special/rounding.html"> Rounding Truncation and
|
||||
</dl></dd>
|
||||
<dt><span class="section"><a href="math_toolkit/utils.html"> Floating Point Utilities</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="math_toolkit/utils/rounding.html"> Rounding Truncation and
|
||||
Integer Conversion</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="math_toolkit/special/rounding/round.html"> Rounding Functions</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/special/rounding/trunc.html"> Truncation Functions</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/special/rounding/modf.html"> Integer and Fractional
|
||||
<dt><span class="section"><a href="math_toolkit/utils/rounding/round.html"> Rounding Functions</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/utils/rounding/trunc.html"> Truncation Functions</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/utils/rounding/modf.html"> Integer and Fractional
|
||||
Part Splitting (modf)</a></span></dt>
|
||||
</dl></dd>
|
||||
<dt><span class="section"><a href="math_toolkit/special/fpclass.html"> Floating-Point Classification:
|
||||
<dt><span class="section"><a href="math_toolkit/utils/fpclass.html"> Floating-Point Classification:
|
||||
Infinities and NaN's</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/special/next_float.html"> Floating-Point Representation
|
||||
<dt><span class="section"><a href="math_toolkit/utils/sign_functions.html"> Sign Manipulation
|
||||
Functions</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/utils/next_float.html"> Floating-Point Representation
|
||||
Distance (ULP), and Finding Adjacent Floating-Point Values</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="math_toolkit/special/next_float/nextafter.html"> Finding
|
||||
the Next Representable Value in a Specific Direction (nextafter)</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/special/next_float/float_next.html"> Finding
|
||||
<dt><span class="section"><a href="math_toolkit/utils/next_float/nextafter.html"> Finding the
|
||||
Next Representable Value in a Specific Direction (nextafter)</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/utils/next_float/float_next.html"> Finding
|
||||
the Next Greater Representable Value (float_next)</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/special/next_float/float_prior.html"> Finding
|
||||
<dt><span class="section"><a href="math_toolkit/utils/next_float/float_prior.html"> Finding
|
||||
the Next Smaller Representable Value (float_prior)</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/special/next_float/float_distance.html"> Calculating
|
||||
<dt><span class="section"><a href="math_toolkit/utils/next_float/float_distance.html"> Calculating
|
||||
the Representation Distance Between Two Floating Point Values (ULP) float_distance</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/special/next_float/float_advance.html"> Advancing
|
||||
<dt><span class="section"><a href="math_toolkit/utils/next_float/float_advance.html"> Advancing
|
||||
a Floating Point Value by a Specific Representation Distance (ULP) float_advance</a></span></dt>
|
||||
</dl></dd>
|
||||
<dt><span class="section"><a href="math_toolkit/special/extern_c.html"> TR1 and C99 external
|
||||
"C" Functions</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="math_toolkit/special/extern_c/tr1.html"> C99 and TR1 C Functions
|
||||
Overview</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/special/extern_c/c99.html"> C99 C Functions</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/special/extern_c/tr1_ref.html"> TR1 C Functions
|
||||
Quick Reference</a></span></dt>
|
||||
</dl></dd>
|
||||
<dt><span class="section"><a href="math_toolkit/extern_c.html"> TR1 and C99 external "C"
|
||||
Functions</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="math_toolkit/extern_c/tr1.html"> C99 and TR1 C Functions Overview</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/extern_c/c99.html"> C99 C Functions</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/extern_c/tr1_ref.html"> TR1 C Functions Quick
|
||||
Reference</a></span></dt>
|
||||
</dl></dd>
|
||||
<dt><span class="section"><a href="math_toolkit/toolkit.html"> Internal Details and Tools (Experimental)</a></span></dt>
|
||||
<dd><dl>
|
||||
@@ -357,6 +392,8 @@
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="math_toolkit/using_udt/use_ntl.html"> Using With NTL - a High-Precision
|
||||
Floating-Point Library</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/using_udt/use_mpfr.html"> Using With MPFR / GMP
|
||||
- a High-Precision Floating-Point Library</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/using_udt/concepts.html"> Conceptual Requirements
|
||||
for Real Number Types</a></span></dt>
|
||||
<dt><span class="section"><a href="math_toolkit/using_udt/dist_concept.html"> Conceptual Requirements
|
||||
@@ -451,7 +488,7 @@
|
||||
</p>
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"><p><small>Last revised: December 29, 2008 at 16:50:38 GMT</small></p></td>
|
||||
<td align="left"><p><small>Last revised: May 22, 2009 at 11:23:00 GMT</small></p></td>
|
||||
<td align="right"><div class="copyright-footer"></div></td>
|
||||
</tr></table>
|
||||
<hr>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Backgrounders</title>
|
||||
<link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../index.html" title="Math Toolkit">
|
||||
<link rel="prev" href="perf/perf_test_app.html" title="The Performance Test Application">
|
||||
@@ -38,8 +38,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Additional Implementation Notes</title>
|
||||
<link rel="stylesheet" href="../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../backgrounders.html" title="Backgrounders">
|
||||
<link rel="prev" href="../backgrounders.html" title="Backgrounders">
|
||||
@@ -33,7 +33,7 @@
|
||||
and reflect more the general implementation philosophy used.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.implementation.implemention_philosophy"></a><h5>
|
||||
<a name="id887352"></a>
|
||||
<a name="id1140046"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.implemention_philosophy">Implemention
|
||||
philosophy</a>
|
||||
</h5>
|
||||
@@ -85,7 +85,7 @@
|
||||
These could still provide sufficient accuracy for some speed-critical applications.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.implementation.accuracy_and_representation_of_test_values"></a><h5>
|
||||
<a name="id887463"></a>
|
||||
<a name="id1140110"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.accuracy_and_representation_of_test_values">Accuracy
|
||||
and Representation of Test Values</a>
|
||||
</h5>
|
||||
@@ -130,7 +130,7 @@
|
||||
binary value).
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.implementation.tolerance_of_tests"></a><h5>
|
||||
<a name="id887695"></a>
|
||||
<a name="id1140254"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.tolerance_of_tests">Tolerance
|
||||
of Tests</a>
|
||||
</h5>
|
||||
@@ -156,7 +156,7 @@
|
||||
first that the suffix L is present, and then that the tolerance is big enough.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.implementation.handling_unsuitable_arguments"></a><h5>
|
||||
<a name="id887755"></a>
|
||||
<a name="id1140291"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.handling_unsuitable_arguments">Handling
|
||||
Unsuitable Arguments</a>
|
||||
</h5>
|
||||
@@ -242,7 +242,7 @@
|
||||
</p></td></tr>
|
||||
</table></div>
|
||||
<a name="math_toolkit.backgrounders.implementation.handling_of_functions_that_are_not_mathematically_defined"></a><h5>
|
||||
<a name="id887972"></a>
|
||||
<a name="id1140424"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.handling_of_functions_that_are_not_mathematically_defined">Handling
|
||||
of Functions that are Not Mathematically defined</a>
|
||||
</h5>
|
||||
@@ -276,7 +276,7 @@
|
||||
</p></td></tr>
|
||||
</table></div>
|
||||
<a name="math_toolkit.backgrounders.implementation.median_of_distributions"></a><h5>
|
||||
<a name="id888113"></a>
|
||||
<a name="id1140509"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.median_of_distributions">Median
|
||||
of distributions</a>
|
||||
</h5>
|
||||
@@ -309,7 +309,7 @@
|
||||
Basic Statistics.</a> give more detail, in particular for discrete distributions.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.implementation.handling_of_floating_point_infinity"></a><h5>
|
||||
<a name="id888257"></a>
|
||||
<a name="id1140606"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.handling_of_floating_point_infinity">Handling
|
||||
of Floating-Point Infinity</a>
|
||||
</h5>
|
||||
@@ -353,7 +353,7 @@
|
||||
handling policies</a>.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.implementation.scale__shape_and_location"></a><h5>
|
||||
<a name="id888415"></a>
|
||||
<a name="id1140693"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.scale__shape_and_location">Scale,
|
||||
Shape and Location</a>
|
||||
</h5>
|
||||
@@ -380,7 +380,7 @@
|
||||
functions, they can be added if required.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.implementation.notes_on_implementation_of_specific_functions__amp__distributions"></a><h5>
|
||||
<a name="id888878"></a>
|
||||
<a name="id1141231"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.notes_on_implementation_of_specific_functions__amp__distributions">Notes
|
||||
on Implementation of Specific Functions & Distributions</a>
|
||||
</h5>
|
||||
@@ -392,7 +392,7 @@
|
||||
0 and upper = 1 would be more suitable.
|
||||
</li></ul></div>
|
||||
<a name="math_toolkit.backgrounders.implementation.rational_approximations_used"></a><h5>
|
||||
<a name="id888919"></a>
|
||||
<a name="id1141251"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.rational_approximations_used">Rational
|
||||
Approximations Used</a>
|
||||
</h5>
|
||||
@@ -435,7 +435,7 @@
|
||||
to the "true" minimax solution.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.implementation.representation_of_mathematical_constants"></a><h5>
|
||||
<a name="id889015"></a>
|
||||
<a name="id1141296"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.representation_of_mathematical_constants">Representation
|
||||
of Mathematical Constants</a>
|
||||
</h5>
|
||||
@@ -469,7 +469,7 @@
|
||||
<pre class="programlisting"><span class="identifier">BOOST_DEFINE_MATH_CONSTANT</span><span class="special">(</span><span class="identifier">pi</span><span class="special">,</span>
|
||||
<span class="number">3.141592653589793238462643383279502884197169399375105820974944</span><span class="special">,</span>
|
||||
<span class="number">5923078164062862089986280348253421170679821480865132823066470938446095505</span><span class="special">,</span>
|
||||
<span class="number">0</span><span class="special">)</span>
|
||||
<span class="number">0</span><span class="special">)</span>
|
||||
</pre>
|
||||
<p>
|
||||
And used thus:
|
||||
@@ -487,16 +487,16 @@
|
||||
<p>
|
||||
So you cannot write
|
||||
</p>
|
||||
<pre class="programlisting"><span class="keyword">double</span> <span class="identifier">p</span> <span class="special">=</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">constants</span><span class="special">::</span><span class="identifier">pi</span><span class="special"><>();</span> <span class="comment">// could not deduce template argument for 'T'
|
||||
<pre class="programlisting"><span class="keyword">double</span> <span class="identifier">p</span> <span class="special">=</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">constants</span><span class="special">::</span><span class="identifier">pi</span><span class="special"><>();</span> <span class="comment">// could not deduce template argument for 'T'
|
||||
</span></pre>
|
||||
<p>
|
||||
Neither can you write:
|
||||
</p>
|
||||
<pre class="programlisting"><span class="keyword">double</span> <span class="identifier">p</span> <span class="special">=</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">constants</span><span class="special">::</span><span class="identifier">pi</span><span class="special">;</span> <span class="comment">// Context does not allow for disambiguation of overloaded function
|
||||
</span><span class="keyword">double</span> <span class="identifier">p</span> <span class="special">=</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">constants</span><span class="special">::</span><span class="identifier">pi</span><span class="special">();</span> <span class="comment">// Context does not allow for disambiguation of overloaded function
|
||||
<pre class="programlisting"><span class="keyword">double</span> <span class="identifier">p</span> <span class="special">=</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">constants</span><span class="special">::</span><span class="identifier">pi</span><span class="special">;</span> <span class="comment">// Context does not allow for disambiguation of overloaded function
|
||||
</span><span class="keyword">double</span> <span class="identifier">p</span> <span class="special">=</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">constants</span><span class="special">::</span><span class="identifier">pi</span><span class="special">();</span> <span class="comment">// Context does not allow for disambiguation of overloaded function
|
||||
</span></pre>
|
||||
<a name="math_toolkit.backgrounders.implementation.thread_safety"></a><h5>
|
||||
<a name="id889570"></a>
|
||||
<a name="id1141682"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.thread_safety">Thread
|
||||
safety</a>
|
||||
</h5>
|
||||
@@ -521,7 +521,7 @@
|
||||
the right thing here at some point.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.implementation.sources_of_test_data"></a><h5>
|
||||
<a name="id889635"></a>
|
||||
<a name="id1141718"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.sources_of_test_data">Sources
|
||||
of Test Data</a>
|
||||
</h5>
|
||||
@@ -565,7 +565,7 @@
|
||||
the underlying special function is known to be difficult to implement.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.implementation.creating_and_managing_the_equations"></a><h5>
|
||||
<a name="id889746"></a>
|
||||
<a name="id1141785"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.creating_and_managing_the_equations">Creating
|
||||
and Managing the Equations</a>
|
||||
</h5>
|
||||
@@ -582,7 +582,7 @@
|
||||
Convertion to SVG was achieved using <a href="http://www.grigoriev.ru/svgmath/" target="_top">SVGMath</a>
|
||||
and a command line such as:
|
||||
</p>
|
||||
<pre class="programlisting">$for file in *.mml; do
|
||||
<pre class="programlisting">$for file in *.mml; do
|
||||
>/cygdrive/c/Python25/python.exe 'C:\download\open\SVGMath-0.3.1\math2svg.py' \
|
||||
>>$file > $(basename $file .mml).svg
|
||||
>done
|
||||
@@ -629,8 +629,8 @@
|
||||
<p>
|
||||
Or using Inkscape and a command such as:
|
||||
</p>
|
||||
<pre class="programlisting">for file in *.svg; do
|
||||
/cygdrive/c/progra~1/Inkscape/inkscape -d 120 -e $(cygpath -a -w $(basename $file .svg).png) $(cygpath -a -w $file);
|
||||
<pre class="programlisting">for file in *.svg; do
|
||||
/cygdrive/c/progra~1/Inkscape/inkscape -d 120 -e $(cygpath -a -w $(basename $file .svg).png) $(cygpath -a -w $file);
|
||||
done</pre>
|
||||
<p>
|
||||
Currently Inkscape seems to generate the better looking png's.
|
||||
@@ -639,20 +639,29 @@ done</pre>
|
||||
The PDF is generated into \pdf\math.pdf using a command from a shell or command
|
||||
window with current directory \math_toolkit\libs\math\doc\sf_and_dist, typically:
|
||||
</p>
|
||||
<pre class="programlisting">bjam -a pdf</pre>
|
||||
<pre class="programlisting">bjam -a pdf >math_pdf.log</pre>
|
||||
<p>
|
||||
Note that XEP will have to be configured to <span class="bold"><strong>use and
|
||||
embed</strong></span> whatever fonts are used by the SVG equations (if necessary
|
||||
editing the sample xep.xml provided by the XEP installation).
|
||||
embed</strong></span> whatever fonts are used by the SVG equations (almost certainly
|
||||
editing the sample xep.xml provided by the XEP installation). If you fail
|
||||
to do this you will get XEP warnings in the log file like
|
||||
</p>
|
||||
<pre class="programlisting">[warning]could not find any font family matching "Times New Roman"; replaced by Helvetica</pre>
|
||||
<p>
|
||||
(html is the default so it is generated at math_toolkit\libs\math\doc\sf_and_dist\html\index.html
|
||||
using command line >bjam -a > math_docs.log).
|
||||
</p>
|
||||
<pre class="programlisting"><span class="special"><!--</span> <span class="identifier">Sample</span> <span class="identifier">configuration</span> <span class="keyword">for</span> <span class="identifier">Windows</span> <span class="identifier">TrueType</span> <span class="identifier">fonts</span><span class="special">.</span> <span class="special">--></span>
|
||||
</pre>
|
||||
<p>
|
||||
<!-- Sample configuration for Windows TrueType fonts. --> is provided
|
||||
in the xep.xml downloaded, but the Windows TrueType fonts are commented out.
|
||||
</p>
|
||||
<p>
|
||||
(html is generated at math_toolkit\libs\math\doc\sf_and_dist\html\index.html
|
||||
using just bjam -a).
|
||||
JM's XEP config file \xep\xep.xml has the following font configuration section
|
||||
added:
|
||||
</p>
|
||||
<p>
|
||||
JM's XEP config file has the following font configuration section added:
|
||||
</p>
|
||||
<pre class="programlisting"><font-group xml:base="file:/C:/Windows/Fonts/" label="Windows TrueType" embed="true" subset="true">
|
||||
<pre class="programlisting"><font-group xml:base="file:/C:/Windows/Fonts/" label="Windows TrueType" embed="true" subset="true">
|
||||
<font-family name="Arial">
|
||||
<font><font-data ttf="arial.ttf"/></font>
|
||||
<font style="oblique"><font-data ttf="ariali.ttf"/></font>
|
||||
@@ -692,14 +701,16 @@ done</pre>
|
||||
<font weight="bold"><font-data ttf="palab.ttf"/></font>
|
||||
<font weight="bold" style="italic"><font-data ttf="palabi.ttf"/></font>
|
||||
</font-family>
|
||||
|
||||
<font-family name="Lucida Sans Unicode">
|
||||
<font><font-data ttf="lsansuni.ttf"/></font>
|
||||
|
||||
<font-family name<code class="literal">"Lucida Sans Unicode">
|
||||
<!-- <font><font-data ttf</code>"lsansuni.ttf"><<span class="emphasis"><em>font> -->
|
||||
<!-- actually called l_10646.ttf on Windows 2000 and Vista Sp1 -->
|
||||
<font><font-data ttf="l_10646.ttf"</em></span>></font>
|
||||
</font-family>
|
||||
</pre>
|
||||
<p>
|
||||
PAB had to alter his because the Lucida Sans Unicode font had a different
|
||||
name. Changes are very likely to be required if you are not using Windows.
|
||||
name. Other changes are very likely to be required if you are not using Windows.
|
||||
</p>
|
||||
<p>
|
||||
XZ authored his equations using the venerable Latex, JM converted these to
|
||||
@@ -726,7 +737,7 @@ done</pre>
|
||||
HTML: this needs further investigation.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.implementation.producing_graphs"></a><h5>
|
||||
<a name="id890132"></a>
|
||||
<a name="id1142031"></a>
|
||||
<a class="link" href="implementation.html#math_toolkit.backgrounders.implementation.producing_graphs">Producing
|
||||
Graphs</a>
|
||||
</h5>
|
||||
@@ -743,8 +754,9 @@ done</pre>
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>The Lanczos Approximation</title>
|
||||
<link rel="stylesheet" href="../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../backgrounders.html" title="Backgrounders">
|
||||
<link rel="prev" href="relative_error.html" title="Relative Error">
|
||||
@@ -27,7 +27,7 @@
|
||||
<a name="math_toolkit.backgrounders.lanczos"></a><a class="link" href="lanczos.html" title="The Lanczos Approximation"> The Lanczos Approximation</a>
|
||||
</h3></div></div></div>
|
||||
<a name="math_toolkit.backgrounders.lanczos.motivation"></a><h5>
|
||||
<a name="id890490"></a>
|
||||
<a name="id1142254"></a>
|
||||
<a class="link" href="lanczos.html#math_toolkit.backgrounders.lanczos.motivation">Motivation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -98,7 +98,7 @@
|
||||
functions divided by large powers into single (simpler) expressions.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.lanczos.the_approximation"></a><h5>
|
||||
<a name="id890868"></a>
|
||||
<a name="id1142504"></a>
|
||||
<a class="link" href="lanczos.html#math_toolkit.backgrounders.lanczos.the_approximation">The
|
||||
Approximation</a>
|
||||
</h5>
|
||||
@@ -160,7 +160,7 @@
|
||||
</p></td></tr>
|
||||
</table></div>
|
||||
<a name="math_toolkit.backgrounders.lanczos.computing_the_coefficients"></a><h5>
|
||||
<a name="id891130"></a>
|
||||
<a name="id1142696"></a>
|
||||
<a class="link" href="lanczos.html#math_toolkit.backgrounders.lanczos.computing_the_coefficients">Computing
|
||||
the Coefficients</a>
|
||||
</h5>
|
||||
@@ -204,7 +204,7 @@
|
||||
multiplied by <span class="emphasis"><em>F</em></span> as the last step.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.lanczos.choosing_the_right_parameters"></a><h5>
|
||||
<a name="id891336"></a>
|
||||
<a name="id1142853"></a>
|
||||
<a class="link" href="lanczos.html#math_toolkit.backgrounders.lanczos.choosing_the_right_parameters">Choosing
|
||||
the Right Parameters</a>
|
||||
</h5>
|
||||
@@ -228,7 +228,7 @@
|
||||
computing to float precision with double precision arithmetic.
|
||||
</p>
|
||||
<div class="table">
|
||||
<a name="id891419"></a><p class="title"><b>Table 53. Optimal choices for N and g when computing with
|
||||
<a name="id1142907"></a><p class="title"><b>Table 53. Optimal choices for N and g when computing with
|
||||
guard digits (source: Pugh)</b></p>
|
||||
<div class="table-contents"><table class="table" summary="Optimal choices for N and g when computing with
|
||||
guard digits (source: Pugh)">
|
||||
@@ -371,7 +371,7 @@
|
||||
exactly matches the machine epsilon for the type in question.
|
||||
</p>
|
||||
<div class="table">
|
||||
<a name="id891741"></a><p class="title"><b>Table 54. Optimum value for N and g when computing at fixed
|
||||
<a name="id1143118"></a><p class="title"><b>Table 54. Optimum value for N and g when computing at fixed
|
||||
precision</b></p>
|
||||
<div class="table-contents"><table class="table" summary="Optimum value for N and g when computing at fixed
|
||||
precision">
|
||||
@@ -536,7 +536,7 @@
|
||||
is exact, and so isn't used for the gamma function.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.lanczos.references"></a><h5>
|
||||
<a name="id892020"></a>
|
||||
<a name="id1143688"></a>
|
||||
<a class="link" href="lanczos.html#math_toolkit.backgrounders.lanczos.references">References</a>
|
||||
</h5>
|
||||
<a name="godfrey"></a><a name="pugh"></a><div class="orderedlist"><ol type="1">
|
||||
@@ -561,8 +561,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>References</title>
|
||||
<link rel="stylesheet" href="../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../backgrounders.html" title="Backgrounders">
|
||||
<link rel="prev" href="remez.html" title="The Remez Method">
|
||||
@@ -27,7 +27,7 @@
|
||||
<a name="math_toolkit.backgrounders.refs"></a><a class="link" href="refs.html" title="References"> References</a>
|
||||
</h3></div></div></div>
|
||||
<a name="math_toolkit.backgrounders.refs.general_references"></a><h5>
|
||||
<a name="id893418"></a>
|
||||
<a name="id1144558"></a>
|
||||
<a class="link" href="refs.html#math_toolkit.backgrounders.refs.general_references">General
|
||||
references</a>
|
||||
</h5>
|
||||
@@ -91,7 +91,7 @@
|
||||
Library (version 2), Walter E. Brown</a>
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.refs.calculators__that_we_found__and_used_to_cross_check___as_far_as_their_widely_varying_accuracy_allowed__"></a><h5>
|
||||
<a name="id893592"></a>
|
||||
<a name="id1144654"></a>
|
||||
<a class="link" href="refs.html#math_toolkit.backgrounders.refs.calculators__that_we_found__and_used_to_cross_check___as_far_as_their_widely_varying_accuracy_allowed__">Calculators*
|
||||
that we found (and used to cross-check - as far as their widely-varying accuracy
|
||||
allowed).</a>
|
||||
@@ -101,7 +101,7 @@
|
||||
Binomial Probability Distribution Calculator.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.refs.other_libraries"></a><h5>
|
||||
<a name="id893637"></a>
|
||||
<a name="id1144680"></a>
|
||||
<a class="link" href="refs.html#math_toolkit.backgrounders.refs.other_libraries">Other Libraries</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -161,8 +161,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Relative Error</title>
|
||||
<link rel="stylesheet" href="../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../backgrounders.html" title="Backgrounders">
|
||||
<link rel="prev" href="implementation.html" title="Additional Implementation Notes">
|
||||
@@ -81,7 +81,7 @@
|
||||
<a name="zero_error"></a><p>
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.relative_error.the_impossibility_of_zero_error"></a><h5>
|
||||
<a name="id890412"></a>
|
||||
<a name="id1142211"></a>
|
||||
<a class="link" href="relative_error.html#math_toolkit.backgrounders.relative_error.the_impossibility_of_zero_error">The
|
||||
Impossibility of Zero Error</a>
|
||||
</h5>
|
||||
@@ -109,8 +109,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>The Remez Method</title>
|
||||
<link rel="stylesheet" href="../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../backgrounders.html" title="Backgrounders">
|
||||
<link rel="prev" href="lanczos.html" title="The Lanczos Approximation">
|
||||
@@ -94,7 +94,7 @@
|
||||
are located!</em></span>
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.remez.the_remez_method"></a><h5>
|
||||
<a name="id892271"></a>
|
||||
<a name="id1143848"></a>
|
||||
<a class="link" href="remez.html#math_toolkit.backgrounders.remez.the_remez_method">The Remez
|
||||
Method</a>
|
||||
</h5>
|
||||
@@ -174,7 +174,7 @@
|
||||
</td></tr>
|
||||
</table></div>
|
||||
<a name="math_toolkit.backgrounders.remez.remez_step_1"></a><h5>
|
||||
<a name="id892496"></a>
|
||||
<a name="id1143999"></a>
|
||||
<a class="link" href="remez.html#math_toolkit.backgrounders.remez.remez_step_1">Remez Step
|
||||
1</a>
|
||||
</h5>
|
||||
@@ -205,7 +205,7 @@
|
||||
to 5.6x10<sup>-4</sup>.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.remez.remez_step_2"></a><h5>
|
||||
<a name="id892601"></a>
|
||||
<a name="id1144074"></a>
|
||||
<a class="link" href="remez.html#math_toolkit.backgrounders.remez.remez_step_2">Remez Step
|
||||
2</a>
|
||||
</h5>
|
||||
@@ -234,7 +234,7 @@
|
||||
In our example we perform multi-point exchange.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.remez.iteration"></a><h5>
|
||||
<a name="id892662"></a>
|
||||
<a name="id1144106"></a>
|
||||
<a class="link" href="remez.html#math_toolkit.backgrounders.remez.iteration">Iteration</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -250,7 +250,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../graphs/remez-4.png" alt="remez-4"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.remez.rational_approximations"></a><h5>
|
||||
<a name="id892723"></a>
|
||||
<a name="id1144150"></a>
|
||||
<a class="link" href="remez.html#math_toolkit.backgrounders.remez.rational_approximations">Rational
|
||||
Approximations</a>
|
||||
</h5>
|
||||
@@ -299,7 +299,7 @@
|
||||
number of terms overall.
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.remez.practical_considerations"></a><h5>
|
||||
<a name="id892846"></a>
|
||||
<a name="id1144230"></a>
|
||||
<a class="link" href="remez.html#math_toolkit.backgrounders.remez.practical_considerations">Practical
|
||||
Considerations</a>
|
||||
</h5>
|
||||
@@ -407,7 +407,7 @@
|
||||
desired minimax solution (5x10<sup>-4</sup>).
|
||||
</p>
|
||||
<a name="math_toolkit.backgrounders.remez.remez_method_checklist"></a><h5>
|
||||
<a name="id893122"></a>
|
||||
<a name="id1144386"></a>
|
||||
<a class="link" href="remez.html#math_toolkit.backgrounders.remez.remez_method_checklist">Remez
|
||||
Method Checklist</a>
|
||||
</h5>
|
||||
@@ -461,7 +461,7 @@
|
||||
</li>
|
||||
</ul></div>
|
||||
<a name="math_toolkit.backgrounders.remez.references"></a><h5>
|
||||
<a name="id893237"></a>
|
||||
<a name="id1144438"></a>
|
||||
<a class="link" href="remez.html#math_toolkit.backgrounders.remez.references">References</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -527,8 +527,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Statistical Distributions and Functions</title>
|
||||
<link rel="stylesheet" href="../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../index.html" title="Math Toolkit">
|
||||
<link rel="prev" href="main_overview/contact.html" title="Contact Info and Support">
|
||||
@@ -30,7 +30,20 @@
|
||||
<dt><span class="section"><a href="dist/stat_tut.html"> Statistical Distributions
|
||||
Tutorial</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="dist/stat_tut/overview.html"> Overview</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/stat_tut/overview.html"> Overview of Distributions</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="dist/stat_tut/overview/headers.html"> Headers
|
||||
and Namespaces</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/stat_tut/overview/objects.html"> Distributions
|
||||
are Objects</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/stat_tut/overview/generic.html"> Generic
|
||||
operations common to all distributions are non-member functions</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/stat_tut/overview/complements.html">
|
||||
Complements are supported too - and when to use them</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/stat_tut/overview/parameters.html">
|
||||
Parameters can be calculated</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/stat_tut/overview/summary.html"> Summary</a></span></dt>
|
||||
</dl></dd>
|
||||
<dt><span class="section"><a href="dist/stat_tut/weg.html"> Worked Examples</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt><span class="section"><a href="dist/stat_tut/weg/dist_construct_eg.html">
|
||||
@@ -111,6 +124,8 @@
|
||||
</dl></dd>
|
||||
<dt><span class="section"><a href="dist/stat_tut/weg/nag_library.html"> Comparison
|
||||
with C, R, FORTRAN-style Free Functions</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/stat_tut/weg/c_sharp.html"> Using the
|
||||
Distributions from Within C#</a></span></dt>
|
||||
</dl></dd>
|
||||
<dt><span class="section"><a href="dist/stat_tut/variates.html"> Random Variates
|
||||
and Distribution Parameters</a></span></dt>
|
||||
@@ -140,6 +155,12 @@
|
||||
<dt><span class="section"><a href="dist/dist_ref/dists/f_dist.html"> F Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/dist_ref/dists/gamma_dist.html"> Gamma
|
||||
(and Erlang) Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/dist_ref/dists/hypergeometric_dist.html">
|
||||
Hypergeometric Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/dist_ref/dists/laplace_dist.html"> Laplace
|
||||
Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/dist_ref/dists/logistic_dist.html">
|
||||
Logistic Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/dist_ref/dists/lognormal_dist.html">
|
||||
Log Normal Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist/dist_ref/dists/negative_binomial_dist.html">
|
||||
@@ -177,8 +198,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Statistical Distributions Reference</title>
|
||||
<link rel="stylesheet" href="../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dist.html" title="Statistical Distributions and Functions">
|
||||
<link rel="prev" href="stat_tut/dist_params.html" title="Discrete Probability Distributions">
|
||||
@@ -48,6 +48,12 @@
|
||||
<dt><span class="section"><a href="dist_ref/dists/f_dist.html"> F Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist_ref/dists/gamma_dist.html"> Gamma
|
||||
(and Erlang) Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist_ref/dists/hypergeometric_dist.html">
|
||||
Hypergeometric Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist_ref/dists/laplace_dist.html"> Laplace
|
||||
Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist_ref/dists/logistic_dist.html">
|
||||
Logistic Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist_ref/dists/lognormal_dist.html">
|
||||
Log Normal Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dist_ref/dists/negative_binomial_dist.html">
|
||||
@@ -83,8 +89,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Distribution Algorithms</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dist_ref.html" title="Statistical Distributions Reference">
|
||||
<link rel="prev" href="dists/uniform_dist.html" title="Uniform Distribution">
|
||||
@@ -28,7 +28,7 @@
|
||||
Algorithms</a>
|
||||
</h4></div></div></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dist_algorithms.finding_the_location_and_scale_for_normal_and_similar_distributions"></a><h5>
|
||||
<a name="id676368"></a>
|
||||
<a name="id925166"></a>
|
||||
<a class="link" href="dist_algorithms.html#math_toolkit.dist.dist_ref.dist_algorithms.finding_the_location_and_scale_for_normal_and_similar_distributions">Finding
|
||||
the Location and Scale for Normal and similar distributions</a>
|
||||
</h5>
|
||||
@@ -50,7 +50,7 @@
|
||||
</span><span class="keyword">using</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">complement</span><span class="special">;</span> <span class="comment">// Will be needed by users who want to use complements.
|
||||
</span></pre>
|
||||
<a name="math_toolkit.dist.dist_ref.dist_algorithms.find_location_function"></a><h5>
|
||||
<a name="id676522"></a>
|
||||
<a name="id925264"></a>
|
||||
<a class="link" href="dist_algorithms.html#math_toolkit.dist.dist_ref.dist_algorithms.find_location_function">find_location
|
||||
function</a>
|
||||
</h5>
|
||||
@@ -80,7 +80,7 @@
|
||||
<span class="special">}}</span> <span class="comment">// namespaces
|
||||
</span></pre>
|
||||
<a name="math_toolkit.dist.dist_ref.dist_algorithms.find_scale_function"></a><h5>
|
||||
<a name="id677143"></a>
|
||||
<a name="id925709"></a>
|
||||
<a class="link" href="dist_algorithms.html#math_toolkit.dist.dist_ref.dist_algorithms.find_scale_function">find_scale
|
||||
function</a>
|
||||
</h5>
|
||||
@@ -130,8 +130,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Distributions</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dist_ref.html" title="Statistical Distributions Reference">
|
||||
<link rel="prev" href="nmp.html" title="Non-Member Properties">
|
||||
@@ -44,6 +44,12 @@
|
||||
<dt><span class="section"><a href="dists/f_dist.html"> F Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dists/gamma_dist.html"> Gamma
|
||||
(and Erlang) Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dists/hypergeometric_dist.html">
|
||||
Hypergeometric Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dists/laplace_dist.html"> Laplace
|
||||
Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dists/logistic_dist.html">
|
||||
Logistic Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dists/lognormal_dist.html">
|
||||
Log Normal Distribution</a></span></dt>
|
||||
<dt><span class="section"><a href="dists/negative_binomial_dist.html">
|
||||
@@ -76,8 +82,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Bernoulli Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="../dists.html" title="Distributions">
|
||||
@@ -87,7 +87,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/bernoulli_cdf.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.bernoulli_dist.member_functions"></a><h5>
|
||||
<a name="id628878"></a>
|
||||
<a name="id871080"></a>
|
||||
<a class="link" href="bernoulli_dist.html#math_toolkit.dist.dist_ref.dists.bernoulli_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -103,7 +103,7 @@
|
||||
Returns the <span class="emphasis"><em>success_fraction</em></span> parameter of this distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.bernoulli_dist.non_member_accessors"></a><h5>
|
||||
<a name="id628994"></a>
|
||||
<a name="id871158"></a>
|
||||
<a class="link" href="bernoulli_dist.html#math_toolkit.dist.dist_ref.dists.bernoulli_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -128,7 +128,7 @@
|
||||
exception and make an error message available.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.bernoulli_dist.accuracy"></a><h5>
|
||||
<a name="id629170"></a>
|
||||
<a name="id871261"></a>
|
||||
<a class="link" href="bernoulli_dist.html#math_toolkit.dist.dist_ref.dists.bernoulli_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -136,7 +136,7 @@
|
||||
and so should have errors within an epsilon or two.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.bernoulli_dist.implementation"></a><h5>
|
||||
<a name="id629201"></a>
|
||||
<a name="id871282"></a>
|
||||
<a class="link" href="bernoulli_dist.html#math_toolkit.dist.dist_ref.dists.bernoulli_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -327,7 +327,7 @@
|
||||
</tbody>
|
||||
</table></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.bernoulli_dist.references"></a><h5>
|
||||
<a name="id629572"></a>
|
||||
<a name="id871593"></a>
|
||||
<a class="link" href="bernoulli_dist.html#math_toolkit.dist.dist_ref.dists.bernoulli_dist.references">References</a>
|
||||
</h5>
|
||||
<div class="itemizedlist"><ul type="disc">
|
||||
@@ -339,8 +339,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Beta Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="bernoulli_dist.html" title="Bernoulli Distribution">
|
||||
@@ -133,12 +133,12 @@
|
||||
from the centre (where x = half).
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.beta_dist.member_functions"></a><h5>
|
||||
<a name="id630720"></a>
|
||||
<a name="id872401"></a>
|
||||
<a class="link" href="beta_dist.html#math_toolkit.dist.dist_ref.dists.beta_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.beta_dist.constructor"></a><h6>
|
||||
<a name="id630746"></a>
|
||||
<a name="id872416"></a>
|
||||
<a class="link" href="beta_dist.html#math_toolkit.dist.dist_ref.dists.beta_dist.constructor">Constructor</a>
|
||||
</h6>
|
||||
<pre class="programlisting"><span class="identifier">beta_distribution</span><span class="special">(</span><span class="identifier">RealType</span> <span class="identifier">alpha</span><span class="special">,</span> <span class="identifier">RealType</span> <span class="identifier">beta</span><span class="special">);</span>
|
||||
@@ -165,7 +165,7 @@
|
||||
yellow in the graph above).
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.beta_dist.parameter_accessors"></a><h6>
|
||||
<a name="id630928"></a>
|
||||
<a name="id872532"></a>
|
||||
<a class="link" href="beta_dist.html#math_toolkit.dist.dist_ref.dists.beta_dist.parameter_accessors">Parameter
|
||||
Accessors</a>
|
||||
</h6>
|
||||
@@ -189,7 +189,7 @@
|
||||
</span><span class="identifier">assert</span><span class="special">(</span><span class="identifier">mybeta</span><span class="special">.</span><span class="identifier">beta</span><span class="special">()</span> <span class="special">==</span> <span class="number">5.</span><span class="special">);</span> <span class="comment">// mybeta.beta() returns 5
|
||||
</span></pre>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.beta_dist.parameter_estimators"></a><h5>
|
||||
<a name="id631204"></a>
|
||||
<a name="id872733"></a>
|
||||
<a class="link" href="beta_dist.html#math_toolkit.dist.dist_ref.dists.beta_dist.parameter_estimators">Parameter
|
||||
Estimators</a>
|
||||
</h5>
|
||||
@@ -242,7 +242,7 @@ from presumed-known mean and variance.
|
||||
Returns the value of β that gives: <code class="computeroutput"><span class="identifier">cdf</span><span class="special">(</span><span class="identifier">beta_distribution</span><span class="special"><</span><span class="identifier">RealType</span><span class="special">>(</span><span class="identifier">alpha</span><span class="special">,</span> <span class="identifier">beta</span><span class="special">),</span> <span class="identifier">x</span><span class="special">)</span> <span class="special">==</span> <span class="identifier">probability</span></code>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.beta_dist.non_member_accessor_functions"></a><h5>
|
||||
<a name="id631838"></a>
|
||||
<a name="id874928"></a>
|
||||
<a class="link" href="beta_dist.html#math_toolkit.dist.dist_ref.dists.beta_dist.non_member_accessor_functions">Non-member
|
||||
Accessor Functions</a>
|
||||
</h5>
|
||||
@@ -264,7 +264,7 @@ from presumed-known mean and variance.
|
||||
Mathworld</a>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.beta_dist.applications"></a><h5>
|
||||
<a name="id632016"></a>
|
||||
<a name="id875030"></a>
|
||||
<a class="link" href="beta_dist.html#math_toolkit.dist.dist_ref.dists.beta_dist.applications">Applications</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -277,7 +277,7 @@ from presumed-known mean and variance.
|
||||
statistical inference</a>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.beta_dist.related_distributions"></a><h5>
|
||||
<a name="id632062"></a>
|
||||
<a name="id875055"></a>
|
||||
<a class="link" href="beta_dist.html#math_toolkit.dist.dist_ref.dists.beta_dist.related_distributions">Related
|
||||
distributions</a>
|
||||
</h5>
|
||||
@@ -303,7 +303,7 @@ from presumed-known mean and variance.
|
||||
Distribution</a> with its p parameter set to x.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.beta_dist.accuracy"></a><h5>
|
||||
<a name="id632151"></a>
|
||||
<a name="id875102"></a>
|
||||
<a class="link" href="beta_dist.html#math_toolkit.dist.dist_ref.dists.beta_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -315,7 +315,7 @@ from presumed-known mean and variance.
|
||||
please refer to these functions for information on accuracy.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.beta_dist.implementation"></a><h5>
|
||||
<a name="id632230"></a>
|
||||
<a name="id875146"></a>
|
||||
<a class="link" href="beta_dist.html#math_toolkit.dist.dist_ref.dists.beta_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -597,7 +597,7 @@ from presumed-known mean and variance.
|
||||
</tbody>
|
||||
</table></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.beta_dist.references"></a><h5>
|
||||
<a name="id633527"></a>
|
||||
<a name="id876154"></a>
|
||||
<a class="link" href="beta_dist.html#math_toolkit.dist.dist_ref.dists.beta_dist.references">References</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -615,8 +615,9 @@ from presumed-known mean and variance.
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Binomial Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="beta_dist.html" title="Beta Distribution">
|
||||
@@ -167,12 +167,12 @@
|
||||
<p>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.binomial_dist.member_functions"></a><h5>
|
||||
<a name="id634857"></a>
|
||||
<a name="id877941"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.binomial_dist.construct"></a><h6>
|
||||
<a name="id634883"></a>
|
||||
<a name="id877959"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.construct">Construct</a>
|
||||
</h6>
|
||||
<pre class="programlisting"><span class="identifier">binomial_distribution</span><span class="special">(</span><span class="identifier">RealType</span> <span class="identifier">n</span><span class="special">,</span> <span class="identifier">RealType</span> <span class="identifier">p</span><span class="special">);</span>
|
||||
@@ -189,7 +189,7 @@
|
||||
otherwise calls <a class="link" href="../../../main_overview/error_handling.html#domain_error">domain_error</a>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.binomial_dist.accessors"></a><h6>
|
||||
<a name="id635044"></a>
|
||||
<a name="id878077"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.accessors">Accessors</a>
|
||||
</h6>
|
||||
<pre class="programlisting"><span class="identifier">RealType</span> <span class="identifier">success_fraction</span><span class="special">()</span> <span class="keyword">const</span><span class="special">;</span>
|
||||
@@ -205,7 +205,7 @@
|
||||
was constructed.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.binomial_dist.lower_bound_on_the_success_fraction"></a><h6>
|
||||
<a name="id635159"></a>
|
||||
<a name="id878157"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.lower_bound_on_the_success_fraction">Lower
|
||||
Bound on the Success Fraction</a>
|
||||
</h6>
|
||||
@@ -311,7 +311,7 @@
|
||||
limits illustrated in the case of the binomial. Biometrika 26 404-413.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.binomial_dist.upper_bound_on_the_success_fraction"></a><h6>
|
||||
<a name="id635812"></a>
|
||||
<a name="id878606"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.upper_bound_on_the_success_fraction">Upper
|
||||
Bound on the Success Fraction</a>
|
||||
</h6>
|
||||
@@ -389,7 +389,7 @@
|
||||
</td></tr>
|
||||
</table></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.binomial_dist.estimating_the_number_of_trials_required_for_a_certain_number_of_successes"></a><h6>
|
||||
<a name="id636252"></a>
|
||||
<a name="id878917"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.estimating_the_number_of_trials_required_for_a_certain_number_of_successes">Estimating
|
||||
the Number of Trials Required for a Certain Number of Successes</a>
|
||||
</h6>
|
||||
@@ -431,7 +431,7 @@
|
||||
of seeing 10 events that occur with frequency one half.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.binomial_dist.estimating_the_maximum_number_of_trials_to_ensure_no_more_than_a_certain_number_of_successes"></a><h6>
|
||||
<a name="id636526"></a>
|
||||
<a name="id879116"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.estimating_the_maximum_number_of_trials_to_ensure_no_more_than_a_certain_number_of_successes">Estimating
|
||||
the Maximum Number of Trials to Ensure no more than a Certain Number
|
||||
of Successes</a>
|
||||
@@ -479,7 +479,7 @@
|
||||
Worked Example.</a>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.binomial_dist.non_member_accessors"></a><h5>
|
||||
<a name="id636818"></a>
|
||||
<a name="id879324"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -504,7 +504,7 @@
|
||||
in the context of this distribution:
|
||||
</p>
|
||||
<div class="table">
|
||||
<a name="id637031"></a><p class="title"><b>Table 11. Meaning of the non-member accessors</b></p>
|
||||
<a name="id879456"></a><p class="title"><b>Table 11. Meaning of the non-member accessors</b></p>
|
||||
<div class="table-contents"><table class="table" summary="Meaning of the non-member accessors">
|
||||
<colgroup>
|
||||
<col>
|
||||
@@ -627,7 +627,7 @@
|
||||
</table></div>
|
||||
</div>
|
||||
<br class="table-break"><a name="math_toolkit.dist.dist_ref.dists.binomial_dist.examples"></a><h5>
|
||||
<a name="id637597"></a>
|
||||
<a name="id879871"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.examples">Examples</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -635,7 +635,7 @@
|
||||
examples</a> are available illustrating the use of the binomial distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.binomial_dist.accuracy"></a><h5>
|
||||
<a name="id637637"></a>
|
||||
<a name="id879892"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -645,7 +645,7 @@
|
||||
please refer to these functions for information on accuracy.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.binomial_dist.implementation"></a><h5>
|
||||
<a name="id637686"></a>
|
||||
<a name="id879921"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -886,7 +886,7 @@
|
||||
</tbody>
|
||||
</table></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.binomial_dist.references"></a><h5>
|
||||
<a name="id639025"></a>
|
||||
<a name="id882479"></a>
|
||||
<a class="link" href="binomial_dist.html#math_toolkit.dist.dist_ref.dists.binomial_dist.references">References</a>
|
||||
</h5>
|
||||
<div class="itemizedlist"><ul type="disc">
|
||||
@@ -907,8 +907,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Cauchy-Lorentz Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="binomial_dist.html" title="Binomial Distribution">
|
||||
@@ -88,7 +88,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/cauchy_pdf2.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.cauchy_dist.member_functions"></a><h5>
|
||||
<a name="id639735"></a>
|
||||
<a name="id882987"></a>
|
||||
<a class="link" href="cauchy_dist.html#math_toolkit.dist.dist_ref.dists.cauchy_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -114,7 +114,7 @@
|
||||
Returns the scale parameter of the distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.cauchy_dist.non_member_accessors"></a><h5>
|
||||
<a name="id639946"></a>
|
||||
<a name="id883134"></a>
|
||||
<a class="link" href="cauchy_dist.html#math_toolkit.dist.dist_ref.dists.cauchy_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -151,7 +151,7 @@
|
||||
The domain of the random variable is [-[max_value], +[min_value]].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.cauchy_dist.accuracy"></a><h5>
|
||||
<a name="id640200"></a>
|
||||
<a name="id883281"></a>
|
||||
<a class="link" href="cauchy_dist.html#math_toolkit.dist.dist_ref.dists.cauchy_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -160,7 +160,7 @@
|
||||
have very low error rates.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.cauchy_dist.implementation"></a><h5>
|
||||
<a name="id640256"></a>
|
||||
<a name="id883314"></a>
|
||||
<a class="link" href="cauchy_dist.html#math_toolkit.dist.dist_ref.dists.cauchy_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -276,7 +276,7 @@
|
||||
</tbody>
|
||||
</table></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.cauchy_dist.references"></a><h5>
|
||||
<a name="id640545"></a>
|
||||
<a name="id883539"></a>
|
||||
<a class="link" href="cauchy_dist.html#math_toolkit.dist.dist_ref.dists.cauchy_dist.references">References</a>
|
||||
</h5>
|
||||
<div class="itemizedlist"><ul type="disc">
|
||||
@@ -291,8 +291,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Chi Squared Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="cauchy_dist.html" title="Cauchy-Lorentz Distribution">
|
||||
@@ -87,7 +87,7 @@ independent, normally distributed random
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/chi_squared_pdf.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.chi_squared_dist.member_functions"></a><h5>
|
||||
<a name="id641321"></a>
|
||||
<a name="id885201"></a>
|
||||
<a class="link" href="chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.chi_squared_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -170,7 +170,7 @@ independent, normally distributed random
|
||||
NIST Engineering Statistics Handbook, Section 7.2.3.2</a>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.chi_squared_dist.non_member_accessors"></a><h5>
|
||||
<a name="id641762"></a>
|
||||
<a name="id885527"></a>
|
||||
<a class="link" href="chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.chi_squared_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -196,7 +196,7 @@ independent, normally distributed random
|
||||
The domain of the random variable is [0, +∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.chi_squared_dist.examples"></a><h5>
|
||||
<a name="id641951"></a>
|
||||
<a name="id885630"></a>
|
||||
<a class="link" href="chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.chi_squared_dist.examples">Examples</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -204,7 +204,7 @@ independent, normally distributed random
|
||||
are available illustrating the use of the Chi Squared Distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.chi_squared_dist.accuracy"></a><h5>
|
||||
<a name="id641992"></a>
|
||||
<a name="id885656"></a>
|
||||
<a class="link" href="chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.chi_squared_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -212,7 +212,7 @@ independent, normally distributed random
|
||||
gamma functions</a>: please refer to the accuracy data for those functions.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.chi_squared_dist.implementation"></a><h5>
|
||||
<a name="id642034"></a>
|
||||
<a name="id885680"></a>
|
||||
<a class="link" href="chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.chi_squared_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -379,7 +379,7 @@ independent, normally distributed random
|
||||
</tbody>
|
||||
</table></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.chi_squared_dist.references"></a><h5>
|
||||
<a name="id642378"></a>
|
||||
<a name="id885959"></a>
|
||||
<a class="link" href="chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.chi_squared_dist.references">References</a>
|
||||
</h5>
|
||||
<div class="itemizedlist"><ul type="disc">
|
||||
@@ -394,8 +394,9 @@ independent, normally distributed random
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Exponential Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="chi_squared_dist.html" title="Chi Squared Distribution">
|
||||
@@ -71,7 +71,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/exponential_pdf.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.exp_dist.member_functions"></a><h5>
|
||||
<a name="id642959"></a>
|
||||
<a name="id886382"></a>
|
||||
<a class="link" href="exp_dist.html#math_toolkit.dist.dist_ref.dists.exp_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -91,7 +91,7 @@
|
||||
Accessor function returns the lambda parameter of the distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.exp_dist.non_member_accessors"></a><h5>
|
||||
<a name="id643101"></a>
|
||||
<a name="id886483"></a>
|
||||
<a class="link" href="exp_dist.html#math_toolkit.dist.dist_ref.dists.exp_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -111,7 +111,7 @@
|
||||
The domain of the random variable is [0, +∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.exp_dist.accuracy"></a><h5>
|
||||
<a name="id643272"></a>
|
||||
<a name="id886583"></a>
|
||||
<a class="link" href="exp_dist.html#math_toolkit.dist.dist_ref.dists.exp_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -122,7 +122,7 @@
|
||||
should have very low error rates.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.exp_dist.implementation"></a><h5>
|
||||
<a name="id643350"></a>
|
||||
<a name="id886631"></a>
|
||||
<a class="link" href="exp_dist.html#math_toolkit.dist.dist_ref.dists.exp_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -283,7 +283,7 @@
|
||||
</tbody>
|
||||
</table></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.exp_dist.references"></a><h5>
|
||||
<a name="id643652"></a>
|
||||
<a name="id886881"></a>
|
||||
<a class="link" href="exp_dist.html#math_toolkit.dist.dist_ref.dists.exp_dist.references">references</a>
|
||||
</h5>
|
||||
<div class="itemizedlist"><ul type="disc">
|
||||
@@ -310,8 +310,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Extreme Value Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="exp_dist.html" title="Exponential Distribution">
|
||||
@@ -100,7 +100,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/extreme_value_pdf2.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.extreme_dist.member_functions"></a><h5>
|
||||
<a name="id644410"></a>
|
||||
<a name="id887520"></a>
|
||||
<a class="link" href="extreme_dist.html#math_toolkit.dist.dist_ref.dists.extreme_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -125,7 +125,7 @@
|
||||
Returns the scale parameter of the distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.extreme_dist.non_member_accessors"></a><h5>
|
||||
<a name="id644635"></a>
|
||||
<a name="id887676"></a>
|
||||
<a class="link" href="extreme_dist.html#math_toolkit.dist.dist_ref.dists.extreme_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -145,7 +145,7 @@
|
||||
The domain of the random parameter is [-∞, +∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.extreme_dist.accuracy"></a><h5>
|
||||
<a name="id644805"></a>
|
||||
<a name="id887774"></a>
|
||||
<a class="link" href="extreme_dist.html#math_toolkit.dist.dist_ref.dists.extreme_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -154,7 +154,7 @@
|
||||
very low error rates.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.extreme_dist.implementation"></a><h5>
|
||||
<a name="id644859"></a>
|
||||
<a name="id887807"></a>
|
||||
<a class="link" href="extreme_dist.html#math_toolkit.dist.dist_ref.dists.extreme_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -320,8 +320,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>F Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="extreme_dist.html" title="Extreme Value Distribution">
|
||||
@@ -80,7 +80,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/fisher_f_pdf.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.f_dist.member_functions"></a><h5>
|
||||
<a name="id645818"></a>
|
||||
<a name="id888556"></a>
|
||||
<a class="link" href="f_dist.html#math_toolkit.dist.dist_ref.dists.f_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -106,7 +106,7 @@
|
||||
Returns the denominator degrees of freedom parameter of the distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.f_dist.non_member_accessors"></a><h5>
|
||||
<a name="id646031"></a>
|
||||
<a name="id888710"></a>
|
||||
<a class="link" href="f_dist.html#math_toolkit.dist.dist_ref.dists.f_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -126,7 +126,7 @@
|
||||
The domain of the random variable is [0, +∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.f_dist.examples"></a><h5>
|
||||
<a name="id646202"></a>
|
||||
<a name="id888809"></a>
|
||||
<a class="link" href="f_dist.html#math_toolkit.dist.dist_ref.dists.f_dist.examples">Examples</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -134,7 +134,7 @@
|
||||
are available illustrating the use of the F Distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.f_dist.accuracy"></a><h5>
|
||||
<a name="id646242"></a>
|
||||
<a name="id888831"></a>
|
||||
<a class="link" href="f_dist.html#math_toolkit.dist.dist_ref.dists.f_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -143,7 +143,7 @@
|
||||
refer to those functions for accuracy data.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.f_dist.implementation"></a><h5>
|
||||
<a name="id646291"></a>
|
||||
<a name="id888857"></a>
|
||||
<a class="link" href="f_dist.html#math_toolkit.dist.dist_ref.dists.f_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -423,8 +423,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Gamma (and Erlang) Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="f_dist.html" title="F Distribution">
|
||||
<link rel="next" href="lognormal_dist.html" title="Log Normal Distribution">
|
||||
<link rel="next" href="hypergeometric_dist.html" title="Hypergeometric Distribution">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table cellpadding="2" width="100%"><tr>
|
||||
@@ -20,7 +20,7 @@
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav">
|
||||
<a accesskey="p" href="f_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="lognormal_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
<a accesskey="p" href="f_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="hypergeometric_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
</div>
|
||||
<div class="section" lang="en">
|
||||
<div class="titlepage"><div><div><h5 class="title">
|
||||
@@ -137,7 +137,7 @@
|
||||
than a dedicated Erlang Distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.gamma_dist.member_functions"></a><h5>
|
||||
<a name="id647722"></a>
|
||||
<a name="id890597"></a>
|
||||
<a class="link" href="gamma_dist.html#math_toolkit.dist.dist_ref.dists.gamma_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -162,7 +162,7 @@
|
||||
Returns the <span class="emphasis"><em>scale</em></span> parameter of this distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.gamma_dist.non_member_accessors"></a><h5>
|
||||
<a name="id647926"></a>
|
||||
<a name="id890743"></a>
|
||||
<a class="link" href="gamma_dist.html#math_toolkit.dist.dist_ref.dists.gamma_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -182,7 +182,7 @@
|
||||
The domain of the random variable is [0,+∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.gamma_dist.accuracy"></a><h5>
|
||||
<a name="id648097"></a>
|
||||
<a name="id890840"></a>
|
||||
<a class="link" href="gamma_dist.html#math_toolkit.dist.dist_ref.dists.gamma_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -194,7 +194,7 @@
|
||||
refer to the accuracy data for those functions for more information.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.gamma_dist.implementation"></a><h5>
|
||||
<a name="id648166"></a>
|
||||
<a name="id890878"></a>
|
||||
<a class="link" href="gamma_dist.html#math_toolkit.dist.dist_ref.dists.gamma_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -363,8 +363,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
@@ -372,7 +373,7 @@
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav">
|
||||
<a accesskey="p" href="f_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="lognormal_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
<a accesskey="p" href="f_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="hypergeometric_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
344
doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/hypergeometric_dist.html
vendored
Normal file
@@ -0,0 +1,344 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Hypergeometric Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="gamma_dist.html" title="Gamma (and Erlang) Distribution">
|
||||
<link rel="next" href="laplace_dist.html" title="Laplace Distribution">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table cellpadding="2" width="100%"><tr>
|
||||
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../boost.png"></td>
|
||||
<td align="center"><a href="../../../../../../../../../index.html">Home</a></td>
|
||||
<td align="center"><a href="../../../../../../../../../libs/libraries.htm">Libraries</a></td>
|
||||
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
|
||||
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
|
||||
<td align="center"><a href="../../../../../../../../../more/index.htm">More</a></td>
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav">
|
||||
<a accesskey="p" href="gamma_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="laplace_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
</div>
|
||||
<div class="section" lang="en">
|
||||
<div class="titlepage"><div><div><h5 class="title">
|
||||
<a name="math_toolkit.dist.dist_ref.dists.hypergeometric_dist"></a><a class="link" href="hypergeometric_dist.html" title="Hypergeometric Distribution">
|
||||
Hypergeometric Distribution</a>
|
||||
</h5></div></div></div>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
<pre class="programlisting"><span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">math</span><span class="special">/</span><span class="identifier">distributions</span><span class="special">/</span><span class="identifier">hypergeometric</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span></pre>
|
||||
<p>
|
||||
</p>
|
||||
<pre class="programlisting"><span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">{</span> <span class="keyword">namespace</span> <span class="identifier">math</span><span class="special">{</span>
|
||||
|
||||
<span class="keyword">template</span> <span class="special"><</span><span class="keyword">class</span> <span class="identifier">RealType</span> <span class="special">=</span> <span class="keyword">double</span><span class="special">,</span>
|
||||
<span class="keyword">class</span> <a class="link" href="../../../policy.html" title="Policies">Policy</a> <span class="special">=</span> <a class="link" href="../../../policy/pol_ref/pol_ref_ref.html" title="Policy Class Reference">policies::policy<></a> <span class="special">></span>
|
||||
<span class="keyword">class</span> <span class="identifier">hypergeometric_distribution</span><span class="special">;</span>
|
||||
|
||||
<span class="keyword">template</span> <span class="special"><</span><span class="keyword">class</span> <span class="identifier">RealType</span><span class="special">,</span> <span class="keyword">class</span> <span class="identifier">Policy</span><span class="special">></span>
|
||||
<span class="keyword">class</span> <span class="identifier">hypergeometric_distribution</span>
|
||||
<span class="special">{</span>
|
||||
<span class="keyword">public</span><span class="special">:</span>
|
||||
<span class="keyword">typedef</span> <span class="identifier">RealType</span> <span class="identifier">value_type</span><span class="special">;</span>
|
||||
<span class="keyword">typedef</span> <span class="identifier">Policy</span> <span class="identifier">policy_type</span><span class="special">;</span>
|
||||
<span class="comment">// Construct:
|
||||
</span> <span class="identifier">hypergeometric_distribution</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="identifier">r</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="identifier">n</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="identifier">N</span><span class="special">);</span>
|
||||
<span class="comment">// Accessors:
|
||||
</span> <span class="keyword">unsigned</span> <span class="identifier">total</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
<span class="keyword">unsigned</span> <span class="identifier">defective</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
<span class="keyword">unsigned</span> <span class="identifier">sample_count</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
<span class="special">};</span>
|
||||
|
||||
<span class="keyword">typedef</span> <span class="identifier">hypergeometric_distribution</span><span class="special"><></span> <span class="identifier">hypergeometric</span><span class="special">;</span>
|
||||
|
||||
<span class="special">}}</span> <span class="comment">// namespaces
|
||||
</span></pre>
|
||||
<p>
|
||||
The hypergeometric distribution describes the number of "events"
|
||||
<span class="emphasis"><em>k</em></span> from a sample <span class="emphasis"><em>n</em></span> drawn from
|
||||
a total population <span class="emphasis"><em>N</em></span> <span class="emphasis"><em>without replacement</em></span>.
|
||||
</p>
|
||||
<p>
|
||||
Imagine we have a sample of <span class="emphasis"><em>N</em></span> objects of which
|
||||
<span class="emphasis"><em>r</em></span> are "defective" and N-r are "not
|
||||
defective" (the terms "success/failure" or "red/blue"
|
||||
are also used). If we sample <span class="emphasis"><em>n</em></span> items <span class="emphasis"><em>without
|
||||
replacement</em></span> then what is the probability that exactly <span class="emphasis"><em>k</em></span>
|
||||
items in the sample are defective? The answer is given by the pdf of
|
||||
the hypergeometric distribution <code class="computeroutput"><span class="identifier">f</span><span class="special">(</span><span class="identifier">k</span><span class="special">;</span> <span class="identifier">r</span><span class="special">,</span> <span class="identifier">n</span><span class="special">,</span> <span class="identifier">N</span><span class="special">)</span></code>, whilst the probability of <span class="emphasis"><em>k</em></span>
|
||||
defectives or fewer is given by F(k; r, n, N), where F(k) is the CDF
|
||||
of the hypergeometric distribution.
|
||||
</p>
|
||||
<div class="note"><table border="0" summary="Note">
|
||||
<tr>
|
||||
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../../../../../../doc/html/images/note.png"></td>
|
||||
<th align="left">Note</th>
|
||||
</tr>
|
||||
<tr><td align="left" valign="top"><p>
|
||||
Unlike almost all of the other distributions in this library, the hypergeometric
|
||||
distribution is strictly discrete: it can not be extended to real valued
|
||||
arguments of its parameters or random variable.
|
||||
</p></td></tr>
|
||||
</table></div>
|
||||
<p>
|
||||
The following graph shows how the distribution changes as the proportion
|
||||
of "defective" items changes, while keeping the population
|
||||
and sample sizes constant:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/hypergeometric_pdf_1.png" align="middle"></span>
|
||||
</p>
|
||||
<p>
|
||||
Note that since the distribution is symmetrical in parameters <span class="emphasis"><em>n</em></span>
|
||||
and <span class="emphasis"><em>r</em></span>, if we change the sample size and keep the
|
||||
population and proportion "defective" the same then we obtain
|
||||
basically the same graphs:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/hypergeometric_pdf_2.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.hypergeometric_dist.member_functions"></a><h5>
|
||||
<a name="id891735"></a>
|
||||
<a class="link" href="hypergeometric_dist.html#math_toolkit.dist.dist_ref.dists.hypergeometric_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
<pre class="programlisting"><span class="identifier">hypergeometric_distribution</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="identifier">r</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="identifier">n</span><span class="special">,</span> <span class="keyword">unsigned</span> <span class="identifier">N</span><span class="special">);</span>
|
||||
</pre>
|
||||
<p>
|
||||
Constructs a hypergeometric distribution with with a population of <span class="emphasis"><em>N</em></span>
|
||||
objects, of which <span class="emphasis"><em>r</em></span> are defective, and from which
|
||||
<span class="emphasis"><em>n</em></span> are sampled.
|
||||
</p>
|
||||
<pre class="programlisting"><span class="keyword">unsigned</span> <span class="identifier">total</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
</pre>
|
||||
<p>
|
||||
Returns the total number of objects <span class="emphasis"><em>N</em></span>.
|
||||
</p>
|
||||
<pre class="programlisting"><span class="keyword">unsigned</span> <span class="identifier">defective</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
</pre>
|
||||
<p>
|
||||
Returns the number of objects <span class="emphasis"><em>r</em></span> in population <span class="emphasis"><em>N</em></span>
|
||||
which are defective.
|
||||
</p>
|
||||
<pre class="programlisting"><span class="keyword">unsigned</span> <span class="identifier">sample_count</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
</pre>
|
||||
<p>
|
||||
Returns the number of objects <span class="emphasis"><em>n</em></span> which are sampled
|
||||
from the population <span class="emphasis"><em>N</em></span>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.hypergeometric_dist.non_member_accessors"></a><h5>
|
||||
<a name="id891914"></a>
|
||||
<a class="link" href="hypergeometric_dist.html#math_toolkit.dist.dist_ref.dists.hypergeometric_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
<p>
|
||||
All the <a class="link" href="../nmp.html" title="Non-Member Properties">usual non-member
|
||||
accessor functions</a> that are generic to all distributions are supported:
|
||||
<a class="link" href="../nmp.html#math.dist.cdf">Cumulative Distribution Function</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.pdf">Probability Density Function</a>, <a class="link" href="../nmp.html#math.dist.quantile">Quantile</a>, <a class="link" href="../nmp.html#math.dist.hazard">Hazard
|
||||
Function</a>, <a class="link" href="../nmp.html#math.dist.chf">Cumulative Hazard Function</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.mean">mean</a>, <a class="link" href="../nmp.html#math.dist.median">median</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.mode">mode</a>, <a class="link" href="../nmp.html#math.dist.variance">variance</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.sd">standard deviation</a>, <a class="link" href="../nmp.html#math.dist.skewness">skewness</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.kurtosis">kurtosis</a>, <a class="link" href="../nmp.html#math.dist.kurtosis_excess">kurtosis_excess</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.range">range</a> and <a class="link" href="../nmp.html#math.dist.support">support</a>.
|
||||
</p>
|
||||
<p>
|
||||
The domain of the random variable is the unsigned integers in the range
|
||||
[max(0, n + r - N), min(n, r)]. A <a class="link" href="../../../main_overview/error_handling.html#domain_error">domain_error</a>
|
||||
is raised if the random variable is outside this range, or is not an
|
||||
integral value.
|
||||
</p>
|
||||
<div class="caution"><table border="0" summary="Caution">
|
||||
<tr>
|
||||
<td rowspan="2" align="center" valign="top" width="25"><img alt="[Caution]" src="../../../../../../../../../doc/html/images/caution.png"></td>
|
||||
<th align="left">Caution</th>
|
||||
</tr>
|
||||
<tr><td align="left" valign="top">
|
||||
<p>
|
||||
The quantile function will by default return an integer result that
|
||||
has been <span class="emphasis"><em>rounded outwards</em></span>. That is to say lower
|
||||
quantiles (where the probability is less than 0.5) are rounded downward,
|
||||
and upper quantiles (where the probability is greater than 0.5) are
|
||||
rounded upwards. This behaviour ensures that if an X% quantile is requested,
|
||||
then <span class="emphasis"><em>at least</em></span> the requested coverage will be present
|
||||
in the central region, and <span class="emphasis"><em>no more than</em></span> the requested
|
||||
coverage will be present in the tails.
|
||||
</p>
|
||||
<p>
|
||||
This behaviour can be changed so that the quantile functions are rounded
|
||||
differently using <a class="link" href="../../../policy/pol_overview.html" title="Policy Overview">Policies</a>.
|
||||
It is strongly recommended that you read the tutorial <a class="link" href="../../../policy/pol_tutorial/understand_dis_quant.html" title="Understanding Quantiles of Discrete Distributions">Understanding
|
||||
Quantiles of Discrete Distributions</a> before using the quantile
|
||||
function on the Hypergeometric distribution. The <a class="link" href="../../../policy/pol_ref/discrete_quant_ref.html" title="Discrete Quantile Policies">reference
|
||||
docs</a> describe how to change the rounding policy for these distributions.
|
||||
</p>
|
||||
<p>
|
||||
However, note that the implementation method of the quantile function
|
||||
always returns an integral value, therefore attempting to use a <a class="link" href="../../../policy.html" title="Policies">Policy</a> that requires (or produces)
|
||||
a real valued result will result in a compile time error.
|
||||
</p>
|
||||
</td></tr>
|
||||
</table></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.hypergeometric_dist.accuracy"></a><h5>
|
||||
<a name="id892064"></a>
|
||||
<a class="link" href="hypergeometric_dist.html#math_toolkit.dist.dist_ref.dists.hypergeometric_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
For small N such that <code class="computeroutput"><span class="identifier">N</span> <span class="special"><</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">max_factorial</span><span class="special"><</span><span class="identifier">RealType</span><span class="special">>::</span><span class="identifier">value</span></code>
|
||||
then table based lookup of the results gives an accuracy to a few epsilon.
|
||||
<code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">max_factorial</span><span class="special"><</span><span class="identifier">RealType</span><span class="special">>::</span><span class="identifier">value</span></code> is 170 at double or long double
|
||||
precision.
|
||||
</p>
|
||||
<p>
|
||||
For larger N such that <code class="computeroutput"><span class="identifier">N</span> <span class="special"><</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">prime</span><span class="special">(</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">max_prime</span><span class="special">)</span></code> then only basic arithmetic is required
|
||||
for the calculation and the accuracy is typically < 20 epsilon. This
|
||||
takes care of N up to 104729.
|
||||
</p>
|
||||
<p>
|
||||
For <code class="computeroutput"><span class="identifier">N</span> <span class="special">></span>
|
||||
<span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">prime</span><span class="special">(</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">math</span><span class="special">::</span><span class="identifier">max_prime</span><span class="special">)</span></code>
|
||||
then accuracy quickly degrades, with 5 or 6 decimal digits being lost
|
||||
for N = 110000.
|
||||
</p>
|
||||
<p>
|
||||
In general for very large N, the user should expect to loose log<sub>10</sub>N decimal
|
||||
digits of precision during the calculation, with the results becoming
|
||||
meaningless for N >= 10<sup>15</sup>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.hypergeometric_dist.testing"></a><h5>
|
||||
<a name="id893952"></a>
|
||||
<a class="link" href="hypergeometric_dist.html#math_toolkit.dist.dist_ref.dists.hypergeometric_dist.testing">Testing</a>
|
||||
</h5>
|
||||
<p>
|
||||
There are three sets of tests: our implementation is tested against a
|
||||
table of values produced by Mathematica's implementation of this distribution.
|
||||
We also sanity check our implementation against some spot values computed
|
||||
using the online calculator here <a href="http://stattrek.com/Tables/Hypergeometric.aspx" target="_top">http://stattrek.com/Tables/Hypergeometric.aspx</a>.
|
||||
Finally we test accuracy against some high precision test data using
|
||||
this implementation and NTL::RR.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.hypergeometric_dist.implementation"></a><h5>
|
||||
<a name="id893976"></a>
|
||||
<a class="link" href="hypergeometric_dist.html#math_toolkit.dist.dist_ref.dists.hypergeometric_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
The PDF can be calculated directly using the formula:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../equations/hypergeometric1.png"></span>
|
||||
</p>
|
||||
<p>
|
||||
However, this can only be used directly when the largest of the factorials
|
||||
is guaranteed not to overflow the floating point representation used.
|
||||
This formula is used directly when <code class="computeroutput"><span class="identifier">N</span>
|
||||
<span class="special"><</span> <span class="identifier">max_factorial</span><span class="special"><</span><span class="identifier">RealType</span><span class="special">>::</span><span class="identifier">value</span></code>
|
||||
in which case table lookup of the factorials gives a rapid and accurate
|
||||
implementation method.
|
||||
</p>
|
||||
<p>
|
||||
For larger <span class="emphasis"><em>N</em></span> the method described in "An Accurate
|
||||
Computation of the Hypergeometric Distribution Function", Trong
|
||||
Wu, ACM Transactions on Mathematical Software, Vol. 19, No. 1, March
|
||||
1993, Pages 33-43 is used. The method relies on the fact that there is
|
||||
an easy method for factorising a factorial into the product of prime
|
||||
numbers:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../equations/hypergeometric2.png"></span>
|
||||
</p>
|
||||
<p>
|
||||
Where p<sub>i</sub> is the i'th prime number, and e<sub>i</sub> is a small positive integer or
|
||||
zero, which can be calculated via:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../equations/hypergeometric3.png"></span>
|
||||
</p>
|
||||
<p>
|
||||
Further we can combine the factorials in the expression for the PDF to
|
||||
yield the PDF directly as the product of prime numbers:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../equations/hypergeometric4.png"></span>
|
||||
</p>
|
||||
<p>
|
||||
With this time the exponents e<sub>i</sub> being either positive, negative or zero.
|
||||
Indeed such a degree of cancellation occurs in the calculation of the
|
||||
e<sub>i</sub> that many are zero, and typically most have a magnitude or no more
|
||||
than 1 or 2.
|
||||
</p>
|
||||
<p>
|
||||
Calculation of the product of the primes requires some care to prevent
|
||||
numerical overflow, we use a novel recursive method which splits the
|
||||
calculation into a series of sub-products, with a new sub-product started
|
||||
each time the next multiplication would cause either overflow or underflow.
|
||||
The sub-products are stored in a linked list on the program stack, and
|
||||
combined in an order that will guarantee no overflow or unnecessary-underflow
|
||||
once the last sub-product has been calculated.
|
||||
</p>
|
||||
<p>
|
||||
This method can be used as long as N is smaller than the largest prime
|
||||
number we have stored in our table of primes (currently 104729). The
|
||||
method is relatively slow (calculating the exponents requires the most
|
||||
time), but requires only a small number of arithmetic operations to calculate
|
||||
the result (indeed there is no shorter method involving only basic arithmetic
|
||||
once the exponents have been found), the method is therefore much more
|
||||
accurate than the alternatives.
|
||||
</p>
|
||||
<p>
|
||||
For much larger N, we can calculate the PDF from the factorials using
|
||||
either lgamma, or by directly combining lanczos approximations to avoid
|
||||
calculating via logarithms. We use the latter method, as it is usually
|
||||
1 or 2 decimal digits more accurate than computing via logarithms with
|
||||
lgamma. However, in this area where N > 104729, the user should expect
|
||||
to loose around log<sub>10</sub>N decimal digits during the calculation in the worst
|
||||
case.
|
||||
</p>
|
||||
<p>
|
||||
The CDF and its complement is calculated by directly summing the PDF's.
|
||||
We start by deciding whether the CDF, or its complement, is likely to
|
||||
be the smaller of the two and then calculate the PDF at <span class="emphasis"><em>k</em></span>
|
||||
(or <span class="emphasis"><em>k+1</em></span> if we're calculating the complement) and
|
||||
calculate successive PDF values via the recurrence relations:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../equations/hypergeometric5.png"></span>
|
||||
</p>
|
||||
<p>
|
||||
Until we either reach the end of the distributions domain, or the next
|
||||
PDF value to be summed would be too small to affect the result.
|
||||
</p>
|
||||
<p>
|
||||
The quantile is calculated in a similar manner to the CDF: we first guess
|
||||
which end of the distribution we're nearer to, and then sum PDFs starting
|
||||
from the end of the distribution this time, until we have some value
|
||||
<span class="emphasis"><em>k</em></span> that gives the required CDF.
|
||||
</p>
|
||||
<p>
|
||||
The median is simply the quantile at 0.5, and the remaining properties
|
||||
are calculated via:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../equations/hypergeometric6.png"></span>
|
||||
</p>
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
</div></td>
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav">
|
||||
<a accesskey="p" href="gamma_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="laplace_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
370
doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/laplace_dist.html
vendored
Normal file
@@ -0,0 +1,370 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Laplace Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="hypergeometric_dist.html" title="Hypergeometric Distribution">
|
||||
<link rel="next" href="logistic_dist.html" title="Logistic Distribution">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table cellpadding="2" width="100%"><tr>
|
||||
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../boost.png"></td>
|
||||
<td align="center"><a href="../../../../../../../../../index.html">Home</a></td>
|
||||
<td align="center"><a href="../../../../../../../../../libs/libraries.htm">Libraries</a></td>
|
||||
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
|
||||
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
|
||||
<td align="center"><a href="../../../../../../../../../more/index.htm">More</a></td>
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav">
|
||||
<a accesskey="p" href="hypergeometric_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="logistic_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
</div>
|
||||
<div class="section" lang="en">
|
||||
<div class="titlepage"><div><div><h5 class="title">
|
||||
<a name="math_toolkit.dist.dist_ref.dists.laplace_dist"></a><a class="link" href="laplace_dist.html" title="Laplace Distribution"> Laplace
|
||||
Distribution</a>
|
||||
</h5></div></div></div>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
<pre class="programlisting"><span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">math</span><span class="special">/</span><span class="identifier">distributions</span><span class="special">/</span><span class="identifier">laplace</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span></pre>
|
||||
<p>
|
||||
</p>
|
||||
<pre class="programlisting"><span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">{</span> <span class="keyword">namespace</span> <span class="identifier">math</span><span class="special">{</span>
|
||||
|
||||
<span class="keyword">template</span> <span class="special"><</span><span class="keyword">class</span> <span class="identifier">RealType</span> <span class="special">=</span> <span class="keyword">double</span><span class="special">,</span>
|
||||
<span class="keyword">class</span> <a class="link" href="../../../policy.html" title="Policies">Policy</a> <span class="special">=</span> <a class="link" href="../../../policy/pol_ref/pol_ref_ref.html" title="Policy Class Reference">policies::policy<></a> <span class="special">></span>
|
||||
<span class="keyword">class</span> <span class="identifier">laplace_distribution</span><span class="special">;</span>
|
||||
|
||||
<span class="keyword">typedef</span> <span class="identifier">laplace_distribution</span><span class="special"><></span> <span class="identifier">laplace</span><span class="special">;</span>
|
||||
|
||||
<span class="keyword">template</span> <span class="special"><</span><span class="keyword">class</span> <span class="identifier">RealType</span><span class="special">,</span> <span class="keyword">class</span> <a class="link" href="../../../policy.html" title="Policies">Policy</a><span class="special">></span>
|
||||
<span class="keyword">class</span> <span class="identifier">laplace_distribution</span>
|
||||
<span class="special">{</span>
|
||||
<span class="keyword">public</span><span class="special">:</span>
|
||||
<span class="keyword">typedef</span> <span class="identifier">RealType</span> <span class="identifier">value_type</span><span class="special">;</span>
|
||||
<span class="keyword">typedef</span> <span class="identifier">Policy</span> <span class="identifier">policy_type</span><span class="special">;</span>
|
||||
<span class="comment">// Construct:
|
||||
</span> <span class="identifier">laplace_distribution</span><span class="special">(</span><span class="identifier">RealType</span> <span class="identifier">location</span> <span class="special">=</span> <span class="number">0</span><span class="special">,</span> <span class="identifier">RealType</span> <span class="identifier">scale</span> <span class="special">=</span> <span class="number">1</span><span class="special">);</span>
|
||||
<span class="comment">// Accessors:
|
||||
</span> <span class="identifier">RealType</span> <span class="identifier">location</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
<span class="identifier">RealType</span> <span class="identifier">scale</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
<span class="special">};</span>
|
||||
|
||||
<span class="special">}}</span> <span class="comment">// namespaces
|
||||
</span></pre>
|
||||
<p>
|
||||
Laplace distribution is the distribution of differences between two independent
|
||||
variates with identical exponential distributions (Abramowitz and Stegun
|
||||
1972, p. 930). It is also called the double exponential distribution.
|
||||
</p>
|
||||
<p>
|
||||
For location parameter μ and scale parameter σ it is defined by the probability
|
||||
density function:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../equations/laplace_pdf.png"></span>
|
||||
</p>
|
||||
<p>
|
||||
The location and scale parameters are equivalent to the mean and standard
|
||||
deviation of the normal or Gaussian distribution.
|
||||
</p>
|
||||
<p>
|
||||
The following graph illustrates the effect of the location parameter
|
||||
μ on the PDF. Note that the range of the random variable remains [-∞,+∞]
|
||||
irrespective of the value of the location parameter:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/laplace_pdf_mu.png" align="middle"></span>
|
||||
</p>
|
||||
<p>
|
||||
The next graph illustrates the effect of the scale parameter σ on the PDF:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/laplace_pdf_sigma.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.laplace_dist.member_functions"></a><h5>
|
||||
<a name="id894733"></a>
|
||||
<a class="link" href="laplace_dist.html#math_toolkit.dist.dist_ref.dists.laplace_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
<pre class="programlisting"><span class="identifier">laplace_distribution</span><span class="special">(</span><span class="identifier">RealType</span> <span class="identifier">location</span> <span class="special">=</span> <span class="number">0</span><span class="special">,</span> <span class="identifier">RealType</span> <span class="identifier">scale</span> <span class="special">=</span> <span class="number">1</span><span class="special">);</span>
|
||||
</pre>
|
||||
<p>
|
||||
Constructs a laplace distribution with location <span class="emphasis"><em>location</em></span>
|
||||
and scale <span class="emphasis"><em>scale</em></span>.
|
||||
</p>
|
||||
<p>
|
||||
The location parameter is the same as the mean of the random variate.
|
||||
</p>
|
||||
<p>
|
||||
The scale parameter is proportional to the standard deviation of the
|
||||
random variate.
|
||||
</p>
|
||||
<p>
|
||||
Requires that the scale parameter is greater than zero, otherwise calls
|
||||
<a class="link" href="../../../main_overview/error_handling.html#domain_error">domain_error</a>.
|
||||
</p>
|
||||
<pre class="programlisting"><span class="identifier">RealType</span> <span class="identifier">location</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
</pre>
|
||||
<p>
|
||||
Returns the <span class="emphasis"><em>location</em></span> parameter of this distribution.
|
||||
</p>
|
||||
<pre class="programlisting"><span class="identifier">RealType</span> <span class="identifier">scale</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
</pre>
|
||||
<p>
|
||||
Returns the <span class="emphasis"><em>scale</em></span> parameter of this distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.laplace_dist.non_member_accessors"></a><h5>
|
||||
<a name="id894895"></a>
|
||||
<a class="link" href="laplace_dist.html#math_toolkit.dist.dist_ref.dists.laplace_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
<p>
|
||||
All the <a class="link" href="../nmp.html" title="Non-Member Properties">usual non-member
|
||||
accessor functions</a> that are generic to all distributions are supported:
|
||||
<a class="link" href="../nmp.html#math.dist.cdf">Cumulative Distribution Function</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.pdf">Probability Density Function</a>, <a class="link" href="../nmp.html#math.dist.quantile">Quantile</a>, <a class="link" href="../nmp.html#math.dist.hazard">Hazard
|
||||
Function</a>, <a class="link" href="../nmp.html#math.dist.chf">Cumulative Hazard Function</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.mean">mean</a>, <a class="link" href="../nmp.html#math.dist.median">median</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.mode">mode</a>, <a class="link" href="../nmp.html#math.dist.variance">variance</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.sd">standard deviation</a>, <a class="link" href="../nmp.html#math.dist.skewness">skewness</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.kurtosis">kurtosis</a>, <a class="link" href="../nmp.html#math.dist.kurtosis_excess">kurtosis_excess</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.range">range</a> and <a class="link" href="../nmp.html#math.dist.support">support</a>.
|
||||
</p>
|
||||
<p>
|
||||
The domain of the random variable is [-∞,+∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.laplace_dist.accuracy"></a><h5>
|
||||
<a name="id894992"></a>
|
||||
<a class="link" href="laplace_dist.html#math_toolkit.dist.dist_ref.dists.laplace_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
The laplace distribution is implemented in terms of the standard library
|
||||
log and exp functions and as such should have very small errors.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.laplace_dist.implementation"></a><h5>
|
||||
<a name="id895011"></a>
|
||||
<a class="link" href="laplace_dist.html#math_toolkit.dist.dist_ref.dists.laplace_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
In the following table μ is the location parameter of the distribution,
|
||||
σ is its scale parameter, <span class="emphasis"><em>x</em></span> is the random variate,
|
||||
<span class="emphasis"><em>p</em></span> is the probability and its complement <span class="emphasis"><em>q
|
||||
= 1-p</em></span>.
|
||||
</p>
|
||||
<div class="informaltable"><table class="table">
|
||||
<colgroup>
|
||||
<col>
|
||||
<col>
|
||||
</colgroup>
|
||||
<thead><tr>
|
||||
<th>
|
||||
<p>
|
||||
Function
|
||||
</p>
|
||||
</th>
|
||||
<th>
|
||||
<p>
|
||||
Implementation Notes
|
||||
</p>
|
||||
</th>
|
||||
</tr></thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
pdf
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relation: pdf = e<sup>-abs(x-μ) / σ</sup> / (2 * σ)
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
cdf
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relations:
|
||||
</p>
|
||||
<p>
|
||||
x < μ : p = e<sup>(x-μ)/σ </sup> / σ
|
||||
</p>
|
||||
<p>
|
||||
x >= μ : p = 1 - e<sup>(μ-x)/σ </sup> / σ
|
||||
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
cdf complement
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relation:
|
||||
</p>
|
||||
<p>
|
||||
-x < μ : q = e<sup>(-x-μ)/σ </sup> / σ
|
||||
</p>
|
||||
<p>
|
||||
-x >= μ : q = 1 - e<sup>(μ+x)/σ </sup> / σ
|
||||
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
quantile
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relations:
|
||||
</p>
|
||||
<p>
|
||||
p < 0.5 : x = μ + σ * log(2*p)
|
||||
</p>
|
||||
<p>
|
||||
p >= 0.5 : x = μ - σ * log(2-2*p)
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
quantile from the complement
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relation:
|
||||
</p>
|
||||
<p>
|
||||
q > 0.5: x = μ + σ*log(2-2*q)
|
||||
</p>
|
||||
<p>
|
||||
q <=0.5: x = μ - σ*log( 2*q )
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
mean
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
μ
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
variance
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
2 * σ<sup>2</sup>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
mode
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
μ
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
skewness
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
0
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
kurtosis
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
6
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
kurtosis excess
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
3
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.laplace_dist.references"></a><h5>
|
||||
<a name="id895320"></a>
|
||||
<a class="link" href="laplace_dist.html#math_toolkit.dist.dist_ref.dists.laplace_dist.references">References</a>
|
||||
</h5>
|
||||
<div class="itemizedlist"><ul type="disc">
|
||||
<li>
|
||||
<a href="http://mathworld.wolfram.com/LaplaceDistribution.html" target="_top">Weisstein,
|
||||
Eric W. "Laplace Distribution."</a> From MathWorld--A
|
||||
Wolfram Web Resource.
|
||||
</li>
|
||||
<li><a href="http://en.wikipedia.org/wiki/Laplace_distribution" target="_top">Laplace
|
||||
Distribution</a></li>
|
||||
<li>
|
||||
M. Abramowitz and I. A. Stegun, Handbook of Mathematical Functions,
|
||||
1972, p. 930.
|
||||
</li>
|
||||
</ul></div>
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
</div></td>
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav">
|
||||
<a accesskey="p" href="hypergeometric_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="logistic_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
302
doc/sf_and_dist/html/math_toolkit/dist/dist_ref/dists/logistic_dist.html
vendored
Normal file
@@ -0,0 +1,302 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Logistic Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="laplace_dist.html" title="Laplace Distribution">
|
||||
<link rel="next" href="lognormal_dist.html" title="Log Normal Distribution">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table cellpadding="2" width="100%"><tr>
|
||||
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../../boost.png"></td>
|
||||
<td align="center"><a href="../../../../../../../../../index.html">Home</a></td>
|
||||
<td align="center"><a href="../../../../../../../../../libs/libraries.htm">Libraries</a></td>
|
||||
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
|
||||
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
|
||||
<td align="center"><a href="../../../../../../../../../more/index.htm">More</a></td>
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav">
|
||||
<a accesskey="p" href="laplace_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="lognormal_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
</div>
|
||||
<div class="section" lang="en">
|
||||
<div class="titlepage"><div><div><h5 class="title">
|
||||
<a name="math_toolkit.dist.dist_ref.dists.logistic_dist"></a><a class="link" href="logistic_dist.html" title="Logistic Distribution">
|
||||
Logistic Distribution</a>
|
||||
</h5></div></div></div>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
<pre class="programlisting"><span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">math</span><span class="special">/</span><span class="identifier">distributions</span><span class="special">/</span><span class="identifier">logistic</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span></pre>
|
||||
<p>
|
||||
</p>
|
||||
<pre class="programlisting"><span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">{</span> <span class="keyword">namespace</span> <span class="identifier">math</span><span class="special">{</span>
|
||||
|
||||
<span class="keyword">template</span> <span class="special"><</span><span class="keyword">class</span> <span class="identifier">RealType</span> <span class="special">=</span> <span class="keyword">double</span><span class="special">,</span>
|
||||
<span class="keyword">class</span> <a class="link" href="../../../policy.html" title="Policies">Policy</a> <span class="special">=</span> <a class="link" href="../../../policy/pol_ref/pol_ref_ref.html" title="Policy Class Reference">policies::policy<></a> <span class="special">></span>
|
||||
<span class="keyword">class</span> <span class="identifier">logistic_distribution</span><span class="special">;</span>
|
||||
|
||||
<span class="keyword">template</span> <span class="special"><</span><span class="keyword">class</span> <span class="identifier">RealType</span><span class="special">,</span> <span class="keyword">class</span> <span class="identifier">Policy</span><span class="special">></span>
|
||||
<span class="keyword">class</span> <span class="identifier">logistic_distribution</span>
|
||||
<span class="special">{</span>
|
||||
<span class="keyword">public</span><span class="special">:</span>
|
||||
<span class="keyword">typedef</span> <span class="identifier">RealType</span> <span class="identifier">value_type</span><span class="special">;</span>
|
||||
<span class="keyword">typedef</span> <span class="identifier">Policy</span> <span class="identifier">policy_type</span><span class="special">;</span>
|
||||
<span class="comment">// Construct:
|
||||
</span> <span class="identifier">logistic_distribution</span><span class="special">(</span><span class="identifier">RealType</span> <span class="identifier">location</span> <span class="special">=</span> <span class="number">0</span><span class="special">,</span> <span class="identifier">RealType</span> <span class="identifier">scale</span> <span class="special">=</span> <span class="number">1</span><span class="special">);</span>
|
||||
<span class="comment">// Accessors:
|
||||
</span> <span class="identifier">RealType</span> <span class="identifier">location</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span> <span class="comment">// location.
|
||||
</span> <span class="identifier">RealType</span> <span class="identifier">scale</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span> <span class="comment">// scale.
|
||||
</span>
|
||||
<span class="special">};</span>
|
||||
|
||||
<span class="keyword">typedef</span> <span class="identifier">logistic_distribution</span><span class="special"><></span> <span class="identifier">logistic</span><span class="special">;</span>
|
||||
|
||||
<span class="special">}}</span> <span class="comment">// namespaces
|
||||
</span></pre>
|
||||
<p>
|
||||
The logistic distribution is a continous probability distribution. It
|
||||
has two parameters - location and scale. The cumulative distribution
|
||||
function of the logistic distribution appears in logistic regression
|
||||
and feedforward neural networks. Among other applications, United State
|
||||
Chess Federation and FIDE use it to calculate chess ratings.
|
||||
</p>
|
||||
<p>
|
||||
The following graph shows how the distribution changes as the parameters
|
||||
change:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/logistic_pdf.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.logistic_dist.member_functions"></a><h5>
|
||||
<a name="id895799"></a>
|
||||
<a class="link" href="logistic_dist.html#math_toolkit.dist.dist_ref.dists.logistic_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
<pre class="programlisting"><span class="identifier">logistic_distribution</span><span class="special">(</span><span class="identifier">RealType</span> <span class="identifier">u</span> <span class="special">=</span> <span class="number">0</span><span class="special">,</span> <span class="identifier">RealType</span> <span class="identifier">s</span> <span class="special">=</span> <span class="number">1</span><span class="special">);</span>
|
||||
</pre>
|
||||
<p>
|
||||
Constructs a logistic distribution with location <span class="emphasis"><em>u</em></span>
|
||||
and scale <span class="emphasis"><em>s</em></span>.
|
||||
</p>
|
||||
<p>
|
||||
Requires <code class="computeroutput"><span class="identifier">scale</span> <span class="special">></span>
|
||||
<span class="number">0</span></code>, otherwise a <a class="link" href="../../../main_overview/error_handling.html#domain_error">domain_error</a>
|
||||
is raised.
|
||||
</p>
|
||||
<pre class="programlisting"><span class="identifier">RealType</span> <span class="identifier">location</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
</pre>
|
||||
<p>
|
||||
Returns the location of this distribution.
|
||||
</p>
|
||||
<pre class="programlisting"><span class="identifier">RealType</span> <span class="identifier">scale</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
</pre>
|
||||
<p>
|
||||
Returns the scale of this distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.logistic_dist.non_member_accessors"></a><h5>
|
||||
<a name="id895964"></a>
|
||||
<a class="link" href="logistic_dist.html#math_toolkit.dist.dist_ref.dists.logistic_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
<p>
|
||||
All the <a class="link" href="../nmp.html" title="Non-Member Properties">usual non-member
|
||||
accessor functions</a> that are generic to all distributions are supported:
|
||||
<a class="link" href="../nmp.html#math.dist.cdf">Cumulative Distribution Function</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.pdf">Probability Density Function</a>, <a class="link" href="../nmp.html#math.dist.quantile">Quantile</a>, <a class="link" href="../nmp.html#math.dist.hazard">Hazard
|
||||
Function</a>, <a class="link" href="../nmp.html#math.dist.chf">Cumulative Hazard Function</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.mean">mean</a>, <a class="link" href="../nmp.html#math.dist.median">median</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.mode">mode</a>, <a class="link" href="../nmp.html#math.dist.variance">variance</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.sd">standard deviation</a>, <a class="link" href="../nmp.html#math.dist.skewness">skewness</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.kurtosis">kurtosis</a>, <a class="link" href="../nmp.html#math.dist.kurtosis_excess">kurtosis_excess</a>,
|
||||
<a class="link" href="../nmp.html#math.dist.range">range</a> and <a class="link" href="../nmp.html#math.dist.support">support</a>.
|
||||
</p>
|
||||
<p>
|
||||
The domain of the random variable is [-[max_value], +[min_value]]. However,
|
||||
the pdf and cdf support inputs of +∞ and -∞
|
||||
as special cases if RealType
|
||||
permits.
|
||||
</p>
|
||||
<p>
|
||||
At <code class="computeroutput"><span class="identifier">p</span><span class="special">=</span><span class="number">1</span></code> and <code class="computeroutput"><span class="identifier">p</span><span class="special">=</span><span class="number">0</span></code>, the
|
||||
quantile function returns the result of +<a class="link" href="../../../main_overview/error_handling.html#overflow_error">overflow_error</a>
|
||||
and -<a class="link" href="../../../main_overview/error_handling.html#overflow_error">overflow_error</a>, while the
|
||||
complement quantile function returns the result of -<a class="link" href="../../../main_overview/error_handling.html#overflow_error">overflow_error</a>
|
||||
and +<a class="link" href="../../../main_overview/error_handling.html#overflow_error">overflow_error</a> respectively.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.logistic_dist.accuracy"></a><h5>
|
||||
<a name="id896855"></a>
|
||||
<a class="link" href="logistic_dist.html#math_toolkit.dist.dist_ref.dists.logistic_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
The logistic distribution is implemented in terms of the <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">exp</span></code> and the <code class="computeroutput"><span class="identifier">std</span><span class="special">::</span><span class="identifier">log</span></code>
|
||||
functions, so its accuracy is related to the accurate implementations
|
||||
of those functions on a given platform. When calculating the quantile
|
||||
with a non-zero <span class="emphasis"><em>position</em></span> parameter catastrophic
|
||||
cancellation errors can occur: in such cases, only a low <span class="emphasis"><em>absolute
|
||||
error</em></span> can be guarenteed.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.logistic_dist.implementation"></a><h5>
|
||||
<a name="id896910"></a>
|
||||
<a class="link" href="logistic_dist.html#math_toolkit.dist.dist_ref.dists.logistic_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<div class="informaltable"><table class="table">
|
||||
<colgroup>
|
||||
<col>
|
||||
<col>
|
||||
</colgroup>
|
||||
<thead><tr>
|
||||
<th>
|
||||
<p>
|
||||
Function
|
||||
</p>
|
||||
</th>
|
||||
<th>
|
||||
<p>
|
||||
Implementation Notes
|
||||
</p>
|
||||
</th>
|
||||
</tr></thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
pdf
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relation: pdf = e<sup>-(x-u)/s</sup> / (s*(1+e<sup>-(x-u)/s</sup>)<sup>2</sup>)
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
cdf
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relation: p = 1/(1+e<sup>-(x-u)/s</sup>)
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
cdf complement
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relation: q = 1/(1+e<sup>(x-u)/s</sup>)
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
quantile
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relation: x = u - s*log(1/p-1)
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
quantile from the complement
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relation: x = u + s*log(p/1-p)
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
mean
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
u
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
mode
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
The same as the mean.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
skewness
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
0
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
kurtosis excess
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
6/5
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p>
|
||||
variance
|
||||
</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
(π*s)<sup>2</sup> / 3
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
</div></td>
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav">
|
||||
<a accesskey="p" href="laplace_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="lognormal_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -3,10 +3,10 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Log Normal Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="gamma_dist.html" title="Gamma (and Erlang) Distribution">
|
||||
<link rel="prev" href="logistic_dist.html" title="Logistic Distribution">
|
||||
<link rel="next" href="negative_binomial_dist.html" title="Negative Binomial Distribution">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
@@ -20,7 +20,7 @@
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav">
|
||||
<a accesskey="p" href="gamma_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="negative_binomial_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
<a accesskey="p" href="logistic_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="negative_binomial_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
</div>
|
||||
<div class="section" lang="en">
|
||||
<div class="titlepage"><div><div><h5 class="title">
|
||||
@@ -88,7 +88,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/lognormal_pdf2.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.lognormal_dist.member_functions"></a><h5>
|
||||
<a name="id649215"></a>
|
||||
<a name="id897646"></a>
|
||||
<a class="link" href="lognormal_dist.html#math_toolkit.dist.dist_ref.dists.lognormal_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -121,7 +121,7 @@
|
||||
Returns the <span class="emphasis"><em>scale</em></span> parameter of this distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.lognormal_dist.non_member_accessors"></a><h5>
|
||||
<a name="id649442"></a>
|
||||
<a name="id897806"></a>
|
||||
<a class="link" href="lognormal_dist.html#math_toolkit.dist.dist_ref.dists.lognormal_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -141,7 +141,7 @@
|
||||
The domain of the random variable is [0,+∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.lognormal_dist.accuracy"></a><h5>
|
||||
<a name="id649610"></a>
|
||||
<a name="id897905"></a>
|
||||
<a class="link" href="lognormal_dist.html#math_toolkit.dist.dist_ref.dists.lognormal_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -150,7 +150,7 @@
|
||||
function</a>, and as such should have very low error rates.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.lognormal_dist.implementation"></a><h5>
|
||||
<a name="id649651"></a>
|
||||
<a name="id897933"></a>
|
||||
<a class="link" href="lognormal_dist.html#math_toolkit.dist.dist_ref.dists.lognormal_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -318,8 +318,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
@@ -327,7 +328,7 @@
|
||||
</tr></table>
|
||||
<hr>
|
||||
<div class="spirit-nav">
|
||||
<a accesskey="p" href="gamma_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="negative_binomial_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
<a accesskey="p" href="logistic_dist.html"><img src="../../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../dists.html"><img src="../../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="negative_binomial_dist.html"><img src="../../../../../../../../../doc/html/images/next.png" alt="Next"></a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Noncentral Beta Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="negative_binomial_dist.html" title="Negative Binomial Distribution">
|
||||
@@ -96,7 +96,7 @@ is a central χ<sup>2</sup> random variable with <span class="emphasis"><em>
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/nc_beta_pdf.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_beta_dist.member_functions"></a><h5>
|
||||
<a name="id655529"></a>
|
||||
<a name="id903572"></a>
|
||||
<a class="link" href="nc_beta_dist.html#math_toolkit.dist.dist_ref.dists.nc_beta_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -128,7 +128,7 @@ is a central χ<sup>2</sup> random variable with <span class="emphasis"><em>
|
||||
was constructed.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_beta_dist.non_member_accessors"></a><h5>
|
||||
<a name="id655786"></a>
|
||||
<a name="id903758"></a>
|
||||
<a class="link" href="nc_beta_dist.html#math_toolkit.dist.dist_ref.dists.nc_beta_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -152,7 +152,7 @@ is a central χ<sup>2</sup> random variable with <span class="emphasis"><em>
|
||||
The domain of the random variable is [0, 1].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_beta_dist.accuracy"></a><h5>
|
||||
<a name="id655960"></a>
|
||||
<a name="id903859"></a>
|
||||
<a class="link" href="nc_beta_dist.html#math_toolkit.dist.dist_ref.dists.nc_beta_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -168,7 +168,7 @@ is a central χ<sup>2</sup> random variable with <span class="emphasis"><em>
|
||||
zero error</a>.
|
||||
</p>
|
||||
<div class="table">
|
||||
<a name="id656022"></a><p class="title"><b>Table 13. Errors In CDF of the Noncentral Beta</b></p>
|
||||
<a name="id903894"></a><p class="title"><b>Table 13. Errors In CDF of the Noncentral Beta</b></p>
|
||||
<div class="table-contents"><table class="table" summary="Errors In CDF of the Noncentral Beta">
|
||||
<colgroup>
|
||||
<col>
|
||||
@@ -295,7 +295,7 @@ is a central χ<sup>2</sup> random variable with <span class="emphasis"><em>
|
||||
functions are broadly similar.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_beta_dist.tests"></a><h5>
|
||||
<a name="id656232"></a>
|
||||
<a name="id904077"></a>
|
||||
<a class="link" href="nc_beta_dist.html#math_toolkit.dist.dist_ref.dists.nc_beta_dist.tests">Tests</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -307,7 +307,7 @@ is a central χ<sup>2</sup> random variable with <span class="emphasis"><em>
|
||||
tests.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_beta_dist.implementation"></a><h5>
|
||||
<a name="id656275"></a>
|
||||
<a name="id904101"></a>
|
||||
<a class="link" href="nc_beta_dist.html#math_toolkit.dist.dist_ref.dists.nc_beta_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -398,8 +398,9 @@ is a central χ<sup>2</sup> random variable with <span class="emphasis"><em>
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Noncentral Chi-Squared Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="nc_beta_dist.html" title="Noncentral Beta Distribution">
|
||||
@@ -110,7 +110,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/nccs_pdf.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.member_functions"></a><h5>
|
||||
<a name="id657715"></a>
|
||||
<a name="id905705"></a>
|
||||
<a class="link" href="nc_chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -183,7 +183,7 @@
|
||||
<span class="special">==</span> <span class="identifier">q</span></code>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.non_member_accessors"></a><h5>
|
||||
<a name="id658951"></a>
|
||||
<a name="id906606"></a>
|
||||
<a class="link" href="nc_chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -203,7 +203,7 @@
|
||||
The domain of the random variable is [0, +∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.examples"></a><h5>
|
||||
<a name="id659123"></a>
|
||||
<a name="id906706"></a>
|
||||
<a class="link" href="nc_chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.examples">Examples</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -211,7 +211,7 @@
|
||||
example</a> for the noncentral chi-squared distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.accuracy"></a><h5>
|
||||
<a name="id659162"></a>
|
||||
<a name="id906733"></a>
|
||||
<a class="link" href="nc_chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -223,7 +223,7 @@
|
||||
zero error</a>.
|
||||
</p>
|
||||
<div class="table">
|
||||
<a name="id659210"></a><p class="title"><b>Table 14. Errors In CDF of the Noncentral Chi-Squared</b></p>
|
||||
<a name="id906763"></a><p class="title"><b>Table 14. Errors In CDF of the Noncentral Chi-Squared</b></p>
|
||||
<div class="table-contents"><table class="table" summary="Errors In CDF of the Noncentral Chi-Squared">
|
||||
<colgroup>
|
||||
<col>
|
||||
@@ -359,7 +359,7 @@
|
||||
produce an accuracy greater than the square root of the machine epsilon.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.tests"></a><h5>
|
||||
<a name="id659445"></a>
|
||||
<a name="id906961"></a>
|
||||
<a class="link" href="nc_chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.tests">Tests</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -373,7 +373,7 @@
|
||||
to at least 50 decimal digits - and is the used for our accuracy tests.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.implementation"></a><h5>
|
||||
<a name="id659498"></a>
|
||||
<a name="id906980"></a>
|
||||
<a class="link" href="nc_chi_squared_dist.html#math_toolkit.dist.dist_ref.dists.nc_chi_squared_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -500,8 +500,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Noncentral F Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="nc_chi_squared_dist.html" title="Noncentral Chi-Squared Distribution">
|
||||
@@ -95,7 +95,7 @@ random variable with <span class="emphasis"><em>v1</em></span>
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/nc_f_pdf.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_f_dist.member_functions"></a><h5>
|
||||
<a name="id660737"></a>
|
||||
<a name="id908176"></a>
|
||||
<a class="link" href="nc_f_dist.html#math_toolkit.dist.dist_ref.dists.nc_f_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -127,7 +127,7 @@ random variable with <span class="emphasis"><em>v1</em></span>
|
||||
which this object was constructed.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_f_dist.non_member_accessors"></a><h5>
|
||||
<a name="id660995"></a>
|
||||
<a name="id908364"></a>
|
||||
<a class="link" href="nc_f_dist.html#math_toolkit.dist.dist_ref.dists.nc_f_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -147,7 +147,7 @@ random variable with <span class="emphasis"><em>v1</em></span>
|
||||
The domain of the random variable is [0, +∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_f_dist.accuracy"></a><h5>
|
||||
<a name="id661167"></a>
|
||||
<a name="id908464"></a>
|
||||
<a class="link" href="nc_f_dist.html#math_toolkit.dist.dist_ref.dists.nc_f_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -155,7 +155,7 @@ random variable with <span class="emphasis"><em>v1</em></span>
|
||||
Beta Distribution</a>: refer to that distribution for accuracy data.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_f_dist.tests"></a><h5>
|
||||
<a name="id661207"></a>
|
||||
<a name="id908488"></a>
|
||||
<a class="link" href="nc_f_dist.html#math_toolkit.dist.dist_ref.dists.nc_f_dist.tests">Tests</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -164,7 +164,7 @@ random variable with <span class="emphasis"><em>v1</em></span>
|
||||
Math library statistical package</a> and its pbeta and dbeta functions.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_f_dist.implementation"></a><h5>
|
||||
<a name="id661245"></a>
|
||||
<a name="id908512"></a>
|
||||
<a class="link" href="nc_f_dist.html#math_toolkit.dist.dist_ref.dists.nc_f_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -407,8 +407,9 @@ is the non-centrality parameter, <span class="emphasis"><em>x</em></span> is the
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Noncentral T Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="nc_f_dist.html" title="Noncentral F Distribution">
|
||||
@@ -85,7 +85,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/nc_t_pdf.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_t_dist.member_functions"></a><h5>
|
||||
<a name="id662409"></a>
|
||||
<a name="id909390"></a>
|
||||
<a class="link" href="nc_t_dist.html#math_toolkit.dist.dist_ref.dists.nc_t_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -111,7 +111,7 @@
|
||||
which this object was constructed.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_t_dist.non_member_accessors"></a><h5>
|
||||
<a name="id662603"></a>
|
||||
<a name="id909530"></a>
|
||||
<a class="link" href="nc_t_dist.html#math_toolkit.dist.dist_ref.dists.nc_t_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -131,7 +131,7 @@
|
||||
The domain of the random variable is [-∞, +∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_t_dist.accuracy"></a><h5>
|
||||
<a name="id662775"></a>
|
||||
<a name="id909629"></a>
|
||||
<a class="link" href="nc_t_dist.html#math_toolkit.dist.dist_ref.dists.nc_t_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -141,7 +141,7 @@
|
||||
one shown will have <a class="link" href="../../../backgrounders/relative_error.html#zero_error">effectively zero error</a>.
|
||||
</p>
|
||||
<div class="table">
|
||||
<a name="id662815"></a><p class="title"><b>Table 15. Errors In CDF of the Noncentral T Distribution</b></p>
|
||||
<a name="id909652"></a><p class="title"><b>Table 15. Errors In CDF of the Noncentral T Distribution</b></p>
|
||||
<div class="table-contents"><table class="table" summary="Errors In CDF of the Noncentral T Distribution">
|
||||
<colgroup>
|
||||
<col>
|
||||
@@ -255,7 +255,7 @@
|
||||
epsilon.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_t_dist.tests"></a><h5>
|
||||
<a name="id663009"></a>
|
||||
<a name="id909810"></a>
|
||||
<a class="link" href="nc_t_dist.html#math_toolkit.dist.dist_ref.dists.nc_t_dist.tests">Tests</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -270,7 +270,7 @@
|
||||
least 50 decimal places.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.nc_t_dist.implementation"></a><h5>
|
||||
<a name="id663051"></a>
|
||||
<a name="id909830"></a>
|
||||
<a class="link" href="nc_t_dist.html#math_toolkit.dist.dist_ref.dists.nc_t_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -351,8 +351,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Negative Binomial Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="lognormal_dist.html" title="Log Normal Distribution">
|
||||
@@ -123,7 +123,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/negative_binomial_pdf_2.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.negative_binomial_dist.related_distributions"></a><h5>
|
||||
<a name="id651123"></a>
|
||||
<a name="id899065"></a>
|
||||
<a class="link" href="negative_binomial_dist.html#math_toolkit.dist.dist_ref.dists.negative_binomial_dist.related_distributions">Related
|
||||
Distributions</a>
|
||||
</h5>
|
||||
@@ -200,12 +200,12 @@
|
||||
<p>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.negative_binomial_dist.member_functions"></a><h5>
|
||||
<a name="id651327"></a>
|
||||
<a name="id899175"></a>
|
||||
<a class="link" href="negative_binomial_dist.html#math_toolkit.dist.dist_ref.dists.negative_binomial_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.negative_binomial_dist.construct"></a><h6>
|
||||
<a name="id651354"></a>
|
||||
<a name="id899189"></a>
|
||||
<a class="link" href="negative_binomial_dist.html#math_toolkit.dist.dist_ref.dists.negative_binomial_dist.construct">Construct</a>
|
||||
</h6>
|
||||
<pre class="programlisting"><span class="identifier">negative_binomial_distribution</span><span class="special">(</span><span class="identifier">RealType</span> <span class="identifier">r</span><span class="special">,</span> <span class="identifier">RealType</span> <span class="identifier">p</span><span class="special">);</span>
|
||||
@@ -221,7 +221,7 @@
|
||||
<span class="special"><=</span> <span class="number">1</span></code>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.negative_binomial_dist.accessors"></a><h6>
|
||||
<a name="id651509"></a>
|
||||
<a name="id899298"></a>
|
||||
<a class="link" href="negative_binomial_dist.html#math_toolkit.dist.dist_ref.dists.negative_binomial_dist.accessors">Accessors</a>
|
||||
</h6>
|
||||
<pre class="programlisting"><span class="identifier">RealType</span> <span class="identifier">success_fraction</span><span class="special">()</span> <span class="keyword">const</span><span class="special">;</span> <span class="comment">// successes / trials (0 <= p <= 1)
|
||||
@@ -237,7 +237,7 @@
|
||||
was constructed.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.negative_binomial_dist.lower_bound_on_parameter_p"></a><h6>
|
||||
<a name="id651635"></a>
|
||||
<a name="id899383"></a>
|
||||
<a class="link" href="negative_binomial_dist.html#math_toolkit.dist.dist_ref.dists.negative_binomial_dist.lower_bound_on_parameter_p">Lower
|
||||
Bound on Parameter p</a>
|
||||
</h6>
|
||||
@@ -298,7 +298,7 @@
|
||||
vol. 48, no3, 605-621</a>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.negative_binomial_dist.upper_bound_on_parameter_p"></a><h6>
|
||||
<a name="id651999"></a>
|
||||
<a name="id899647"></a>
|
||||
<a class="link" href="negative_binomial_dist.html#math_toolkit.dist.dist_ref.dists.negative_binomial_dist.upper_bound_on_parameter_p">Upper
|
||||
Bound on Parameter p</a>
|
||||
</h6>
|
||||
@@ -358,7 +358,7 @@
|
||||
vol. 48, no3, 605-621</a>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.negative_binomial_dist.estimating_number_of_trials_to_ensure_at_least_a_certain_number_of_failures"></a><h6>
|
||||
<a name="id652360"></a>
|
||||
<a name="id899907"></a>
|
||||
<a class="link" href="negative_binomial_dist.html#math_toolkit.dist.dist_ref.dists.negative_binomial_dist.estimating_number_of_trials_to_ensure_at_least_a_certain_number_of_failures">Estimating
|
||||
Number of Trials to Ensure at Least a Certain Number of Failures</a>
|
||||
</h6>
|
||||
@@ -409,7 +409,7 @@
|
||||
probability of observing k failures or fewer.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.negative_binomial_dist.estimating_number_of_trials_to_ensure_a_maximum_number_of_failures_or_less"></a><h6>
|
||||
<a name="id652667"></a>
|
||||
<a name="id900128"></a>
|
||||
<a class="link" href="negative_binomial_dist.html#math_toolkit.dist.dist_ref.dists.negative_binomial_dist.estimating_number_of_trials_to_ensure_a_maximum_number_of_failures_or_less">Estimating
|
||||
Number of Trials to Ensure a Maximum Number of Failures or Less</a>
|
||||
</h6>
|
||||
@@ -457,7 +457,7 @@
|
||||
probability of observing more than k failures.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.negative_binomial_dist.non_member_accessors"></a><h5>
|
||||
<a name="id652984"></a>
|
||||
<a name="id900356"></a>
|
||||
<a class="link" href="negative_binomial_dist.html#math_toolkit.dist.dist_ref.dists.negative_binomial_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -478,7 +478,7 @@
|
||||
in the context of this distribution:
|
||||
</p>
|
||||
<div class="table">
|
||||
<a name="id653148"></a><p class="title"><b>Table 12. Meaning of the non-member accessors.</b></p>
|
||||
<a name="id900450"></a><p class="title"><b>Table 12. Meaning of the non-member accessors.</b></p>
|
||||
<div class="table-contents"><table class="table" summary="Meaning of the non-member accessors.">
|
||||
<colgroup>
|
||||
<col>
|
||||
@@ -603,7 +603,7 @@
|
||||
</table></div>
|
||||
</div>
|
||||
<br class="table-break"><a name="math_toolkit.dist.dist_ref.dists.negative_binomial_dist.accuracy"></a><h5>
|
||||
<a name="id653706"></a>
|
||||
<a name="id900861"></a>
|
||||
<a class="link" href="negative_binomial_dist.html#math_toolkit.dist.dist_ref.dists.negative_binomial_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -613,7 +613,7 @@
|
||||
please refer to these functions for information on accuracy.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.negative_binomial_dist.implementation"></a><h5>
|
||||
<a name="id653756"></a>
|
||||
<a name="id900888"></a>
|
||||
<a class="link" href="negative_binomial_dist.html#math_toolkit.dist.dist_ref.dists.negative_binomial_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -894,8 +894,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Normal (Gaussian) Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="nc_t_dist.html" title="Noncentral T Distribution">
|
||||
@@ -79,7 +79,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/normal_pdf.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.normal_dist.member_functions"></a><h5>
|
||||
<a name="id664056"></a>
|
||||
<a name="id911876"></a>
|
||||
<a class="link" href="normal_dist.html#math_toolkit.dist.dist_ref.dists.normal_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -109,7 +109,7 @@
|
||||
be used generically).
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.normal_dist.non_member_accessors"></a><h5>
|
||||
<a name="id664330"></a>
|
||||
<a name="id912071"></a>
|
||||
<a class="link" href="normal_dist.html#math_toolkit.dist.dist_ref.dists.normal_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -131,7 +131,7 @@
|
||||
and complement cdf -∞ = 1 and +∞ = 0, if RealType permits.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.normal_dist.accuracy"></a><h5>
|
||||
<a name="id664507"></a>
|
||||
<a name="id912168"></a>
|
||||
<a class="link" href="normal_dist.html#math_toolkit.dist.dist_ref.dists.normal_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -139,7 +139,7 @@
|
||||
function</a>, and as such should have very low error rates.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.normal_dist.implementation"></a><h5>
|
||||
<a name="id664547"></a>
|
||||
<a name="id912194"></a>
|
||||
<a class="link" href="normal_dist.html#math_toolkit.dist.dist_ref.dists.normal_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -289,8 +289,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Pareto Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="normal_dist.html" title="Normal (Gaussian) Distribution">
|
||||
@@ -33,9 +33,9 @@
|
||||
<pre class="programlisting"><span class="preprocessor">#include</span> <span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">math</span><span class="special">/</span><span class="identifier">distributions</span><span class="special">/</span><span class="identifier">pareto</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span></pre>
|
||||
<p>
|
||||
</p>
|
||||
<pre class="programlisting"><span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">{</span> <span class="keyword">namespace</span> <span class="identifier">math</span><span class="special">{</span>
|
||||
|
||||
<span class="keyword">template</span> <span class="special"><</span><span class="keyword">class</span> <span class="identifier">RealType</span> <span class="special">=</span> <span class="keyword">double</span><span class="special">,</span>
|
||||
<pre class="programlisting"><span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">{</span> <span class="keyword">namespace</span> <span class="identifier">math</span><span class="special">{</span>
|
||||
|
||||
<span class="keyword">template</span> <span class="special"><</span><span class="keyword">class</span> <span class="identifier">RealType</span> <span class="special">=</span> <span class="keyword">double</span><span class="special">,</span>
|
||||
<span class="keyword">class</span> <a class="link" href="../../../policy.html" title="Policies">Policy</a> <span class="special">=</span> <a class="link" href="../../../policy/pol_ref/pol_ref_ref.html" title="Policy Class Reference">policies::policy<></a> <span class="special">></span>
|
||||
<span class="keyword">class</span> <span class="identifier">pareto_distribution</span><span class="special">;</span>
|
||||
|
||||
@@ -47,9 +47,9 @@
|
||||
<span class="keyword">public</span><span class="special">:</span>
|
||||
<span class="keyword">typedef</span> <span class="identifier">RealType</span> <span class="identifier">value_type</span><span class="special">;</span>
|
||||
<span class="comment">// Constructor:
|
||||
</span> <span class="identifier">pareto_distribution</span><span class="special">(</span><span class="identifier">RealType</span> <span class="identifier">location</span> <span class="special">=</span> <span class="number">1</span><span class="special">,</span> <span class="identifier">RealType</span> <span class="identifier">shape</span> <span class="special">=</span> <span class="number">1</span><span class="special">)</span>
|
||||
</span> <span class="identifier">pareto_distribution</span><span class="special">(</span><span class="identifier">RealType</span> <span class="identifier">scale</span> <span class="special">=</span> <span class="number">1</span><span class="special">,</span> <span class="identifier">RealType</span> <span class="identifier">shape</span> <span class="special">=</span> <span class="number">1</span><span class="special">)</span>
|
||||
<span class="comment">// Accessors:
|
||||
</span> <span class="identifier">RealType</span> <span class="identifier">location</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
</span> <span class="identifier">RealType</span> <span class="identifier">scale</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
<span class="identifier">RealType</span> <span class="identifier">shape</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
<span class="special">};</span>
|
||||
|
||||
@@ -64,16 +64,17 @@
|
||||
f(x; α, β) = αβ<sup>α</sup> / x<sup>α+ 1</sup>
|
||||
</p>
|
||||
<p>
|
||||
For shape parameter α > 0, and location parameter β > 0, and α > 0.
|
||||
For shape parameter α > 0, and scale parameter β > 0. If x < β, the
|
||||
pdf is zero.
|
||||
</p>
|
||||
<p>
|
||||
The <a href="http://mathworld.wolfram.com/paretoDistribution.html" target="_top">Pareto
|
||||
The <a href="http://mathworld.wolfram.com/ParetoDistribution.html" target="_top">Pareto
|
||||
distribution</a> often describes the larger compared to the smaller.
|
||||
A classic example is that 80% of the wealth is owned by 20% of the population.
|
||||
</p>
|
||||
<p>
|
||||
The following graph illustrates how the PDF varies with the location
|
||||
parameter β:
|
||||
The following graph illustrates how the PDF varies with the scale parameter
|
||||
β:
|
||||
</p>
|
||||
<p>
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/pareto_pdf1.png" align="middle"></span>
|
||||
@@ -86,16 +87,16 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/pareto_pdf2.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.pareto.related_distributions"></a><h5>
|
||||
<a name="id665570"></a>
|
||||
<a name="id912966"></a>
|
||||
<a class="link" href="pareto.html#math_toolkit.dist.dist_ref.dists.pareto.related_distributions">Related
|
||||
distributions</a>
|
||||
</h5>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.pareto.member_functions"></a><h5>
|
||||
<a name="id665595"></a>
|
||||
<a name="id912984"></a>
|
||||
<a class="link" href="pareto.html#math_toolkit.dist.dist_ref.dists.pareto.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
<pre class="programlisting"><span class="identifier">pareto_distribution</span><span class="special">(</span><span class="identifier">RealType</span> <span class="identifier">location</span> <span class="special">=</span> <span class="number">1</span><span class="special">,</span> <span class="identifier">RealType</span> <span class="identifier">shape</span> <span class="special">=</span> <span class="number">1</span><span class="special">);</span>
|
||||
<pre class="programlisting"><span class="identifier">pareto_distribution</span><span class="special">(</span><span class="identifier">RealType</span> <span class="identifier">scale</span> <span class="special">=</span> <span class="number">1</span><span class="special">,</span> <span class="identifier">RealType</span> <span class="identifier">shape</span> <span class="special">=</span> <span class="number">1</span><span class="special">);</span>
|
||||
</pre>
|
||||
<p>
|
||||
Constructs a <a href="http://en.wikipedia.org/wiki/pareto_distribution" target="_top">pareto
|
||||
@@ -106,10 +107,10 @@
|
||||
Requires that the <span class="emphasis"><em>shape</em></span> and <span class="emphasis"><em>scale</em></span>
|
||||
parameters are both greater than zero, otherwise calls <a class="link" href="../../../main_overview/error_handling.html#domain_error">domain_error</a>.
|
||||
</p>
|
||||
<pre class="programlisting"><span class="identifier">RealType</span> <span class="identifier">location</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
<pre class="programlisting"><span class="identifier">RealType</span> <span class="identifier">scale</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
</pre>
|
||||
<p>
|
||||
Returns the <span class="emphasis"><em>location</em></span> parameter of this distribution.
|
||||
Returns the <span class="emphasis"><em>scale</em></span> parameter of this distribution.
|
||||
</p>
|
||||
<pre class="programlisting"><span class="identifier">RealType</span> <span class="identifier">shape</span><span class="special">()</span><span class="keyword">const</span><span class="special">;</span>
|
||||
</pre>
|
||||
@@ -117,7 +118,7 @@
|
||||
Returns the <span class="emphasis"><em>shape</em></span> parameter of this distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.pareto.non_member_accessors"></a><h5>
|
||||
<a name="id665825"></a>
|
||||
<a name="id913152"></a>
|
||||
<a class="link" href="pareto.html#math_toolkit.dist.dist_ref.dists.pareto.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -134,25 +135,28 @@
|
||||
<a class="link" href="../nmp.html#math.dist.range">range</a> and <a class="link" href="../nmp.html#math.dist.support">support</a>.
|
||||
</p>
|
||||
<p>
|
||||
The supported domain of the random variable is [location, ∞].
|
||||
The supported domain of the random variable is [scale, ∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.pareto.accuracy"></a><h5>
|
||||
<a name="id665997"></a>
|
||||
<a name="id913252"></a>
|
||||
<a class="link" href="pareto.html#math_toolkit.dist.dist_ref.dists.pareto.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
The pareto distribution is implemented in terms of the standard library
|
||||
<code class="computeroutput"><span class="identifier">exp</span></code> functions plus <a class="link" href="../../../special/powers/expm1.html" title="expm1">expm1</a> and as such
|
||||
should have very low error rates except when probability is very close
|
||||
to unity.
|
||||
The Pareto distribution is implemented in terms of the standard library
|
||||
<code class="computeroutput"><span class="identifier">exp</span></code> functions plus <a class="link" href="../../../special/powers/expm1.html" title="expm1">expm1</a> and so should
|
||||
have very small errors, usually only a few epsilon.
|
||||
</p>
|
||||
<p>
|
||||
If probability is near to unity (or the complement of a probability near
|
||||
zero) see also <a class="link" href="../../stat_tut/overview/complements.html#why_complements">why complements?</a>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.pareto.implementation"></a><h5>
|
||||
<a name="id666051"></a>
|
||||
<a name="id913289"></a>
|
||||
<a class="link" href="pareto.html#math_toolkit.dist.dist_ref.dists.pareto.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
In the following table α is the shape parameter of the distribution, and
|
||||
β is its location parameter, <span class="emphasis"><em>x</em></span> is the random variate,
|
||||
β is its scale parameter, <span class="emphasis"><em>x</em></span> is the random variate,
|
||||
<span class="emphasis"><em>p</em></span> is the probability and its complement <span class="emphasis"><em>q
|
||||
= 1-p</em></span>.
|
||||
</p>
|
||||
@@ -218,7 +222,7 @@
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relation: x = α / (1 - p)<sup>1/β</sup>
|
||||
Using the relation: x = β / (1 - p)<sup>1/α</sup>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
@@ -230,7 +234,7 @@
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Using the relation: x = α / (q)<sup>1/β</sup>
|
||||
Using the relation: x = β / (q)<sup>1/α</sup>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
@@ -278,7 +282,7 @@
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Refer to <a href="http://mathworld.wolfram.com/paretoDistribution.html" target="_top">Weisstein,
|
||||
Refer to <a href="http://mathworld.wolfram.com/ParetoDistribution.html" target="_top">Weisstein,
|
||||
Eric W. "Pareto Distribution." From MathWorld--A Wolfram
|
||||
Web Resource.</a>
|
||||
</p>
|
||||
@@ -292,7 +296,7 @@
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Refer to <a href="http://mathworld.wolfram.com/paretoDistribution.html" target="_top">Weisstein,
|
||||
Refer to <a href="http://mathworld.wolfram.com/ParetoDistribution.html" target="_top">Weisstein,
|
||||
Eric W. "Pareto Distribution." From MathWorld--A Wolfram
|
||||
Web Resource.</a>
|
||||
</p>
|
||||
@@ -306,7 +310,7 @@
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Refer to <a href="http://mathworld.wolfram.com/paretoDistribution.html" target="_top">Weisstein,
|
||||
Refer to <a href="http://mathworld.wolfram.com/ParetoDistribution.html" target="_top">Weisstein,
|
||||
Eric W. "pareto Distribution." From MathWorld--A Wolfram
|
||||
Web Resource.</a>
|
||||
</p>
|
||||
@@ -315,7 +319,7 @@
|
||||
</tbody>
|
||||
</table></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.pareto.references"></a><h5>
|
||||
<a name="id666407"></a>
|
||||
<a name="id913601"></a>
|
||||
<a class="link" href="pareto.html#math_toolkit.dist.dist_ref.dists.pareto.references">References</a>
|
||||
</h5>
|
||||
<div class="itemizedlist"><ul type="disc">
|
||||
@@ -324,12 +328,18 @@
|
||||
<li><a href="http://mathworld.wolfram.com/paretoDistribution.html" target="_top">Weisstein,
|
||||
Eric W. "Pareto Distribution." From MathWorld--A Wolfram
|
||||
Web Resource.</a></li>
|
||||
<li>
|
||||
Handbook of Statistical Distributions with Applications, K Krishnamoorthy,
|
||||
ISBN 1-58488-635-8, Chapter 23, pp 257 - 267. (Note the meaning of
|
||||
a and b is reversed in Wolfram and Krishnamoorthy).
|
||||
</li>
|
||||
</ul></div>
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Poisson Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="pareto.html" title="Pareto Distribution">
|
||||
@@ -122,7 +122,7 @@
|
||||
<p>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.poisson_dist.member_functions"></a><h5>
|
||||
<a name="id667162"></a>
|
||||
<a name="id914123"></a>
|
||||
<a class="link" href="poisson_dist.html#math_toolkit.dist.dist_ref.dists.poisson_dist.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -137,7 +137,7 @@
|
||||
Returns the <span class="emphasis"><em>mean</em></span> of this distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.poisson_dist.non_member_accessors"></a><h5>
|
||||
<a name="id667286"></a>
|
||||
<a name="id914212"></a>
|
||||
<a class="link" href="poisson_dist.html#math_toolkit.dist.dist_ref.dists.poisson_dist.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -157,7 +157,7 @@
|
||||
The domain of the random variable is [0, ∞].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.poisson_dist.accuracy"></a><h5>
|
||||
<a name="id667455"></a>
|
||||
<a name="id914309"></a>
|
||||
<a class="link" href="poisson_dist.html#math_toolkit.dist.dist_ref.dists.poisson_dist.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -171,7 +171,7 @@
|
||||
using an iterative method with a lower tolerance to avoid excessive computation.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.poisson_dist.implementation"></a><h5>
|
||||
<a name="id667504"></a>
|
||||
<a name="id914338"></a>
|
||||
<a class="link" href="poisson_dist.html#math_toolkit.dist.dist_ref.dists.poisson_dist.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -326,8 +326,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title>Rayleigh Distribution</title>
|
||||
<link rel="stylesheet" href="../../../../../../../../../doc/html/boostbook.css" type="text/css">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot_8125">
|
||||
<meta name="generator" content="DocBook XSL Stylesheets V1.74.0">
|
||||
<link rel="home" href="../../../../index.html" title="Math Toolkit">
|
||||
<link rel="up" href="../dists.html" title="Distributions">
|
||||
<link rel="prev" href="poisson_dist.html" title="Poisson Distribution">
|
||||
@@ -86,7 +86,7 @@
|
||||
<span class="inlinemediaobject"><img src="../../../../../graphs/rayleigh_cdf.png" align="middle"></span>
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.rayleigh.related_distributions"></a><h5>
|
||||
<a name="id668443"></a>
|
||||
<a name="id915045"></a>
|
||||
<a class="link" href="rayleigh.html#math_toolkit.dist.dist_ref.dists.rayleigh.related_distributions">Related
|
||||
distributions</a>
|
||||
</h5>
|
||||
@@ -102,7 +102,7 @@
|
||||
distribution</a>.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.rayleigh.member_functions"></a><h5>
|
||||
<a name="id668519"></a>
|
||||
<a name="id915096"></a>
|
||||
<a class="link" href="rayleigh.html#math_toolkit.dist.dist_ref.dists.rayleigh.member_functions">Member
|
||||
Functions</a>
|
||||
</h5>
|
||||
@@ -121,7 +121,7 @@
|
||||
Returns the <span class="emphasis"><em>sigma</em></span> parameter of this distribution.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.rayleigh.non_member_accessors"></a><h5>
|
||||
<a name="id668666"></a>
|
||||
<a name="id915200"></a>
|
||||
<a class="link" href="rayleigh.html#math_toolkit.dist.dist_ref.dists.rayleigh.non_member_accessors">Non-member
|
||||
Accessors</a>
|
||||
</h5>
|
||||
@@ -141,7 +141,7 @@
|
||||
The domain of the random variable is [0, max_value].
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.rayleigh.accuracy"></a><h5>
|
||||
<a name="id668836"></a>
|
||||
<a name="id915299"></a>
|
||||
<a class="link" href="rayleigh.html#math_toolkit.dist.dist_ref.dists.rayleigh.accuracy">Accuracy</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -151,7 +151,7 @@
|
||||
using NTL RR type with 150-bit accuracy, about 50 decimal digits.
|
||||
</p>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.rayleigh.implementation"></a><h5>
|
||||
<a name="id668893"></a>
|
||||
<a name="id915333"></a>
|
||||
<a class="link" href="rayleigh.html#math_toolkit.dist.dist_ref.dists.rayleigh.implementation">Implementation</a>
|
||||
</h5>
|
||||
<p>
|
||||
@@ -320,7 +320,7 @@
|
||||
</tbody>
|
||||
</table></div>
|
||||
<a name="math_toolkit.dist.dist_ref.dists.rayleigh.references"></a><h5>
|
||||
<a name="id669282"></a>
|
||||
<a name="id916643"></a>
|
||||
<a class="link" href="rayleigh.html#math_toolkit.dist.dist_ref.dists.rayleigh.references">References</a>
|
||||
</h5>
|
||||
<div class="itemizedlist"><ul type="disc">
|
||||
@@ -332,8 +332,9 @@
|
||||
</div>
|
||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||
<td align="left"></td>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008 John Maddock, Paul A. Bristow, Hubert
|
||||
Holin, Xiaogang Zhang, Bruno Lalande and Johan Råde<p>
|
||||
<td align="right"><div class="copyright-footer">Copyright © 2006 , 2007, 2008, 2009 John Maddock, Paul A. Bristow,
|
||||
Hubert Holin, Xiaogang Zhang, Bruno Lalande, Johan Råde, Gautam Sewani
|
||||
and Thijs van den Berg<p>
|
||||
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
||||
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>)
|
||||
</p>
|
||||
|
||||