~ubuntu-branches/ubuntu/trusty/gsl-ref-html/trusty

« back to all changes in this revision

Viewing changes to Gegenbauer-Functions.html

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2006-04-12 19:46:32 UTC
  • mfrom: (1.3.1 upstream) (3.1.1 dapper)
  • Revision ID: james.westby@ubuntu.com-20060412194632-c9lodpl075pv9si3
Tags: 1.8-1
* New upstream release 1.8
* As with previous releases, the sources were obtained from the FSF web 
  pages by means of a wget call (c.f. the debian/rules target 'upstream')

* debian/control: Standards-Version increased to 3.6.2
* debian/copyright: Updated FSF address
* debian/rules: Set DH_COMPAT=4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html lang="en">
 
2
<head>
 
3
<title>Gegenbauer Functions - GNU Scientific Library -- Reference Manual</title>
 
4
<meta http-equiv="Content-Type" content="text/html">
 
5
<meta name="description" content="GNU Scientific Library -- Reference Manual">
 
6
<meta name="generator" content="makeinfo 4.8">
 
7
<link title="Top" rel="start" href="index.html#Top">
 
8
<link rel="up" href="Special-Functions.html#Special-Functions" title="Special Functions">
 
9
<link rel="prev" href="Gamma-and-Beta-Functions.html#Gamma-and-Beta-Functions" title="Gamma and Beta Functions">
 
10
<link rel="next" href="Hypergeometric-Functions.html#Hypergeometric-Functions" title="Hypergeometric Functions">
 
11
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
 
12
<!--
 
13
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 The GSL Team.
 
14
 
 
15
Permission is granted to copy, distribute and/or modify this document
 
16
under the terms of the GNU Free Documentation License, Version 1.2 or
 
17
any later version published by the Free Software Foundation; with the
 
18
Invariant Sections being ``GNU General Public License'' and ``Free Software
 
19
Needs Free Documentation'', the Front-Cover text being ``A GNU Manual'',
 
20
and with the Back-Cover Text being (a) (see below).  A copy of the
 
21
license is included in the section entitled ``GNU Free Documentation
 
22
License''.
 
23
 
 
24
(a) The Back-Cover Text is: ``You have freedom to copy and modify this
 
25
GNU Manual, like GNU software.''-->
 
26
<meta http-equiv="Content-Style-Type" content="text/css">
 
27
<style type="text/css"><!--
 
28
  pre.display { font-family:inherit }
 
29
  pre.format  { font-family:inherit }
 
30
  pre.smalldisplay { font-family:inherit; font-size:smaller }
 
31
  pre.smallformat  { font-family:inherit; font-size:smaller }
 
32
  pre.smallexample { font-size:smaller }
 
33
  pre.smalllisp    { font-size:smaller }
 
34
  span.sc    { font-variant:small-caps }
 
35
  span.roman { font-family:serif; font-weight:normal; } 
 
36
  span.sansserif { font-family:sans-serif; font-weight:normal; } 
 
37
--></style>
 
38
</head>
 
39
<body>
 
40
<div class="node">
 
41
<p>
 
42
<a name="Gegenbauer-Functions"></a>
 
43
Next:&nbsp;<a rel="next" accesskey="n" href="Hypergeometric-Functions.html#Hypergeometric-Functions">Hypergeometric Functions</a>,
 
44
Previous:&nbsp;<a rel="previous" accesskey="p" href="Gamma-and-Beta-Functions.html#Gamma-and-Beta-Functions">Gamma and Beta Functions</a>,
 
45
Up:&nbsp;<a rel="up" accesskey="u" href="Special-Functions.html#Special-Functions">Special Functions</a>
 
46
<hr>
 
47
</div>
 
48
 
 
49
<h3 class="section">7.20 Gegenbauer Functions</h3>
 
50
 
 
51
<p><a name="index-Gegenbauer-functions-619"></a>
 
52
The Gegenbauer polynomials are defined in Abramowitz &amp; Stegun, Chapter
 
53
22, where they are known as Ultraspherical polynomials.  The functions
 
54
described in this section are declared in the header file
 
55
<samp><span class="file">gsl_sf_gegenbauer.h</span></samp>.
 
56
 
 
57
<div class="defun">
 
58
&mdash; Function: double <b>gsl_sf_gegenpoly_1</b> (<var>double lambda, double x</var>)<var><a name="index-gsl_005fsf_005fgegenpoly_005f1-620"></a></var><br>
 
59
&mdash; Function: double <b>gsl_sf_gegenpoly_2</b> (<var>double lambda, double x</var>)<var><a name="index-gsl_005fsf_005fgegenpoly_005f2-621"></a></var><br>
 
60
&mdash; Function: double <b>gsl_sf_gegenpoly_3</b> (<var>double lambda, double x</var>)<var><a name="index-gsl_005fsf_005fgegenpoly_005f3-622"></a></var><br>
 
61
&mdash; Function: int <b>gsl_sf_gegenpoly_1_e</b> (<var>double lambda, double x, gsl_sf_result * result</var>)<var><a name="index-gsl_005fsf_005fgegenpoly_005f1_005fe-623"></a></var><br>
 
62
&mdash; Function: int <b>gsl_sf_gegenpoly_2_e</b> (<var>double lambda, double x, gsl_sf_result * result</var>)<var><a name="index-gsl_005fsf_005fgegenpoly_005f2_005fe-624"></a></var><br>
 
63
&mdash; Function: int <b>gsl_sf_gegenpoly_3_e</b> (<var>double lambda, double x, gsl_sf_result * result</var>)<var><a name="index-gsl_005fsf_005fgegenpoly_005f3_005fe-625"></a></var><br>
 
64
<blockquote><p>These functions evaluate the Gegenbauer polynomials
 
65
<!-- {$C^{(\lambda)}_n(x)$} -->
 
66
C^{(\lambda)}_n(x) using explicit
 
67
representations for n =1, 2, 3. 
 
68
<!-- Exceptional Return Values: none -->
 
69
</p></blockquote></div>
 
70
 
 
71
<div class="defun">
 
72
&mdash; Function: double <b>gsl_sf_gegenpoly_n</b> (<var>int n, double lambda, double x</var>)<var><a name="index-gsl_005fsf_005fgegenpoly_005fn-626"></a></var><br>
 
73
&mdash; Function: int <b>gsl_sf_gegenpoly_n_e</b> (<var>int n, double lambda, double x, gsl_sf_result * result</var>)<var><a name="index-gsl_005fsf_005fgegenpoly_005fn_005fe-627"></a></var><br>
 
74
<blockquote><p>These functions evaluate the Gegenbauer polynomial <!-- {$C^{(\lambda)}_n(x)$} -->
 
75
C^{(\lambda)}_n(x) for a specific value of <var>n</var>,
 
76
<var>lambda</var>, <var>x</var> subject to \lambda &gt; -1/2, <!-- {$n \ge 0$} -->
 
77
n &gt;= 0. 
 
78
<!-- Domain: lambda > -1/2, n >= 0 -->
 
79
<!-- Exceptional Return Values: GSL_EDOM -->
 
80
</p></blockquote></div>
 
81
 
 
82
<div class="defun">
 
83
&mdash; Function: int <b>gsl_sf_gegenpoly_array</b> (<var>int nmax, double lambda, double x, double result_array</var>[])<var><a name="index-gsl_005fsf_005fgegenpoly_005farray-628"></a></var><br>
 
84
<blockquote><p>This function computes an array of Gegenbauer polynomials
 
85
<!-- {$C^{(\lambda)}_n(x)$} -->
 
86
C^{(\lambda)}_n(x) for n = 0, 1, 2, \dots, nmax, subject
 
87
to \lambda &gt; -1/2, <!-- {$nmax \ge 0$} -->
 
88
nmax &gt;= 0. 
 
89
<!-- Conditions: n = 0, 1, 2, ... nmax -->
 
90
<!-- Domain: lambda > -1/2, nmax >= 0 -->
 
91
<!-- Exceptional Return Values: GSL_EDOM -->
 
92
</p></blockquote></div>
 
93
 
 
94
   </body></html>
 
95