diff options
Diffstat (limited to 'libs/math/doc/html/math_toolkit/sf_poly/legendre.html')
-rw-r--r-- | libs/math/doc/html/math_toolkit/sf_poly/legendre.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/libs/math/doc/html/math_toolkit/sf_poly/legendre.html b/libs/math/doc/html/math_toolkit/sf_poly/legendre.html index 6750f978a..458fc02b9 100644 --- a/libs/math/doc/html/math_toolkit/sf_poly/legendre.html +++ b/libs/math/doc/html/math_toolkit/sf_poly/legendre.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Legendre (and Associated) Polynomials</title> <link rel="stylesheet" href="../../math.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Math Toolkit 2.1.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Math Toolkit 2.2.0"> <link rel="up" href="../sf_poly.html" title="Polynomials"> <link rel="prev" href="../sf_poly.html" title="Polynomials"> <link rel="next" href="laguerre.html" title="Laguerre (and Associated) Polynomials"> @@ -88,7 +88,7 @@ Returns the Legendre Polynomial of the first kind: </p> <p> - <span class="inlinemediaobject"><img src="../../../equations/legendre_0.png"></span> + <span class="inlinemediaobject"><img src="../../../equations/legendre_0.svg"></span> </p> <p> Requires -1 <= x <= 1, otherwise returns the result of <a class="link" href="../error_handling.html#math_toolkit.error_handling.domain_error">domain_error</a>. @@ -103,7 +103,7 @@ The following graph illustrates the behaviour of the first few Legendre Polynomials: </p> <p> - <span class="inlinemediaobject"><img src="../../../graphs/legendre_p.png" align="middle"></span> + <span class="inlinemediaobject"><img src="../../../graphs/legendre_p.svg" align="middle"></span> </p> <pre class="programlisting"><span class="keyword">template</span> <span class="special"><</span><span class="keyword">class</span> <span class="identifier">T</span><span class="special">></span> <a class="link" href="../result_type.html" title="Calculation of the Type of the Result"><span class="emphasis"><em>calculated-result-type</em></span></a> <span class="identifier">legendre_p</span><span class="special">(</span><span class="keyword">int</span> <span class="identifier">l</span><span class="special">,</span> <span class="keyword">int</span> <span class="identifier">m</span><span class="special">,</span> <span class="identifier">T</span> <span class="identifier">x</span><span class="special">);</span> @@ -115,7 +115,7 @@ Returns the associated Legendre polynomial of the first kind: </p> <p> - <span class="inlinemediaobject"><img src="../../../equations/legendre_1.png"></span> + <span class="inlinemediaobject"><img src="../../../equations/legendre_1.svg"></span> </p> <p> Requires -1 <= x <= 1, otherwise returns the result of <a class="link" href="../error_handling.html#math_toolkit.error_handling.domain_error">domain_error</a>. @@ -125,7 +125,7 @@ handled via the identity relations: </p> <p> - <span class="inlinemediaobject"><img src="../../../equations/legendre_3.png"></span> + <span class="inlinemediaobject"><img src="../../../equations/legendre_3.svg"></span> </p> <div class="caution"><table border="0" summary="Caution"> <tr> @@ -171,7 +171,7 @@ to the Legendre differential equation, for example: </p> <p> - <span class="inlinemediaobject"><img src="../../../equations/legendre_2.png"></span> + <span class="inlinemediaobject"><img src="../../../equations/legendre_2.svg"></span> </p> <p> Requires -1 <= x <= 1, otherwise <a class="link" href="../error_handling.html#math_toolkit.error_handling.domain_error">domain_error</a> @@ -182,7 +182,7 @@ kind: </p> <p> - <span class="inlinemediaobject"><img src="../../../graphs/legendre_q.png" align="middle"></span> + <span class="inlinemediaobject"><img src="../../../graphs/legendre_q.svg" align="middle"></span> </p> <pre class="programlisting"><span class="keyword">template</span> <span class="special"><</span><span class="keyword">class</span> <span class="identifier">T1</span><span class="special">,</span> <span class="keyword">class</span> <span class="identifier">T2</span><span class="special">,</span> <span class="keyword">class</span> <span class="identifier">T3</span><span class="special">></span> <a class="link" href="../result_type.html" title="Calculation of the Type of the Result"><span class="emphasis"><em>calculated-result-type</em></span></a> <span class="identifier">legendre_next</span><span class="special">(</span><span class="keyword">unsigned</span> <span class="identifier">l</span><span class="special">,</span> <span class="identifier">T1</span> <span class="identifier">x</span><span class="special">,</span> <span class="identifier">T2</span> <span class="identifier">Pl</span><span class="special">,</span> <span class="identifier">T3</span> <span class="identifier">Plm1</span><span class="special">);</span> @@ -195,7 +195,7 @@ second kinds. </p> <p> - <span class="inlinemediaobject"><img src="../../../equations/legendre_4.png"></span> + <span class="inlinemediaobject"><img src="../../../equations/legendre_4.svg"></span> </p> <p> For example we could produce a vector of the first 10 polynomial values using: @@ -243,7 +243,7 @@ at the same <span class="emphasis"><em>x</em></span>, and for rising <span class="emphasis"><em>l</em></span>. </p> <p> - <span class="inlinemediaobject"><img src="../../../equations/legendre_5.png"></span> + <span class="inlinemediaobject"><img src="../../../equations/legendre_5.svg"></span> </p> <p> For example we could produce a vector of the first m+10 polynomial values |