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

« back to all changes in this revision

Viewing changes to Irregular-Modified-Cylindrical-Bessel-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>Irregular Modified Cylindrical Bessel 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="Bessel-Functions.html#Bessel-Functions" title="Bessel Functions">
 
9
<link rel="prev" href="Regular-Modified-Cylindrical-Bessel-Functions.html#Regular-Modified-Cylindrical-Bessel-Functions" title="Regular Modified Cylindrical Bessel Functions">
 
10
<link rel="next" href="Regular-Spherical-Bessel-Functions.html#Regular-Spherical-Bessel-Functions" title="Regular Spherical Bessel 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="Irregular-Modified-Cylindrical-Bessel-Functions"></a>
 
43
Next:&nbsp;<a rel="next" accesskey="n" href="Regular-Spherical-Bessel-Functions.html#Regular-Spherical-Bessel-Functions">Regular Spherical Bessel Functions</a>,
 
44
Previous:&nbsp;<a rel="previous" accesskey="p" href="Regular-Modified-Cylindrical-Bessel-Functions.html#Regular-Modified-Cylindrical-Bessel-Functions">Regular Modified Cylindrical Bessel Functions</a>,
 
45
Up:&nbsp;<a rel="up" accesskey="u" href="Bessel-Functions.html#Bessel-Functions">Bessel Functions</a>
 
46
<hr>
 
47
</div>
 
48
 
 
49
<h4 class="subsection">7.5.4 Irregular Modified Cylindrical Bessel Functions</h4>
 
50
 
 
51
<p><a name="index-Irregular-Modified-Cylindrical-Bessel-Functions-297"></a>
 
52
 
 
53
<div class="defun">
 
54
&mdash; Function: double <b>gsl_sf_bessel_K0</b> (<var>double x</var>)<var><a name="index-gsl_005fsf_005fbessel_005fK0-298"></a></var><br>
 
55
&mdash; Function: int <b>gsl_sf_bessel_K0_e</b> (<var>double x, gsl_sf_result * result</var>)<var><a name="index-gsl_005fsf_005fbessel_005fK0_005fe-299"></a></var><br>
 
56
<blockquote><p>These routines compute the irregular modified cylindrical Bessel
 
57
function of zeroth order, K_0(x), for x &gt; 0. 
 
58
<!-- Domain: x > 0.0 -->
 
59
<!-- Exceptional Return Values: GSL_EDOM, GSL_EUNDRFLW -->
 
60
</p></blockquote></div>
 
61
 
 
62
<div class="defun">
 
63
&mdash; Function: double <b>gsl_sf_bessel_K1</b> (<var>double x</var>)<var><a name="index-gsl_005fsf_005fbessel_005fK1-300"></a></var><br>
 
64
&mdash; Function: int <b>gsl_sf_bessel_K1_e</b> (<var>double x, gsl_sf_result * result</var>)<var><a name="index-gsl_005fsf_005fbessel_005fK1_005fe-301"></a></var><br>
 
65
<blockquote><p>These routines compute the irregular modified cylindrical Bessel
 
66
function of first order, K_1(x), for x &gt; 0. 
 
67
<!-- Domain: x > 0.0 -->
 
68
<!-- Exceptional Return Values: GSL_EDOM, GSL_EOVRFLW, GSL_EUNDRFLW -->
 
69
</p></blockquote></div>
 
70
 
 
71
<div class="defun">
 
72
&mdash; Function: double <b>gsl_sf_bessel_Kn</b> (<var>int n, double x</var>)<var><a name="index-gsl_005fsf_005fbessel_005fKn-302"></a></var><br>
 
73
&mdash; Function: int <b>gsl_sf_bessel_Kn_e</b> (<var>int n, double x, gsl_sf_result * result</var>)<var><a name="index-gsl_005fsf_005fbessel_005fKn_005fe-303"></a></var><br>
 
74
<blockquote><p>These routines compute the irregular modified cylindrical Bessel
 
75
function of order <var>n</var>, K_n(x), for x &gt; 0. 
 
76
<!-- Domain: x > 0.0 -->
 
77
<!-- Exceptional Return Values: GSL_EDOM, GSL_EOVRFLW, GSL_EUNDRFLW -->
 
78
</p></blockquote></div>
 
79
 
 
80
<div class="defun">
 
81
&mdash; Function: int <b>gsl_sf_bessel_Kn_array</b> (<var>int nmin, int nmax, double x, double result_array</var>[])<var><a name="index-gsl_005fsf_005fbessel_005fKn_005farray-304"></a></var><br>
 
82
<blockquote><p>This routine computes the values of the irregular modified cylindrical
 
83
Bessel functions K_n(x) for n from <var>nmin</var> to
 
84
<var>nmax</var> inclusive, storing the results in the array
 
85
<var>result_array</var>. The start of the range <var>nmin</var> must be positive
 
86
or zero. The domain of the function is x&gt;0. The values are
 
87
computed using recurrence relations for efficiency, and therefore
 
88
may differ slightly from the exact values. 
 
89
<!-- Conditions: n=nmin,...,nmax -->
 
90
<!-- Domain: x > 0.0, nmin>=0, nmax >= nmin -->
 
91
<!-- Exceptional Return Values: GSL_EDOM, GSL_EOVRFLW, GSL_EUNDRFLW -->
 
92
</p></blockquote></div>
 
93
 
 
94
<div class="defun">
 
95
&mdash; Function: double <b>gsl_sf_bessel_K0_scaled</b> (<var>double x</var>)<var><a name="index-gsl_005fsf_005fbessel_005fK0_005fscaled-305"></a></var><br>
 
96
&mdash; Function: int <b>gsl_sf_bessel_K0_scaled_e</b> (<var>double x, gsl_sf_result * result</var>)<var><a name="index-gsl_005fsf_005fbessel_005fK0_005fscaled_005fe-306"></a></var><br>
 
97
<blockquote><p>These routines compute the scaled irregular modified cylindrical Bessel
 
98
function of zeroth order \exp(x) K_0(x) for x&gt;0. 
 
99
<!-- Domain: x > 0.0 -->
 
100
<!-- Exceptional Return Values: GSL_EDOM -->
 
101
</p></blockquote></div>
 
102
 
 
103
<div class="defun">
 
104
&mdash; Function: double <b>gsl_sf_bessel_K1_scaled</b> (<var>double x</var>)<var><a name="index-gsl_005fsf_005fbessel_005fK1_005fscaled-307"></a></var><br>
 
105
&mdash; Function: int <b>gsl_sf_bessel_K1_scaled_e</b> (<var>double x, gsl_sf_result * result</var>)<var><a name="index-gsl_005fsf_005fbessel_005fK1_005fscaled_005fe-308"></a></var><br>
 
106
<blockquote><p>These routines compute the scaled irregular modified cylindrical Bessel
 
107
function of first order \exp(x) K_1(x) for x&gt;0. 
 
108
<!-- Domain: x > 0.0 -->
 
109
<!-- Exceptional Return Values: GSL_EDOM, GSL_EUNDRFLW -->
 
110
</p></blockquote></div>
 
111
 
 
112
<div class="defun">
 
113
&mdash; Function: double <b>gsl_sf_bessel_Kn_scaled</b> (<var>int n, double x</var>)<var><a name="index-gsl_005fsf_005fbessel_005fKn_005fscaled-309"></a></var><br>
 
114
&mdash; Function: int <b>gsl_sf_bessel_Kn_scaled_e</b> (<var>int n, double x, gsl_sf_result * result</var>)<var><a name="index-gsl_005fsf_005fbessel_005fKn_005fscaled_005fe-310"></a></var><br>
 
115
<blockquote><p>These routines compute the scaled irregular modified cylindrical Bessel
 
116
function of order <var>n</var>, \exp(x) K_n(x), for x&gt;0. 
 
117
<!-- Domain: x > 0.0 -->
 
118
<!-- Exceptional Return Values: GSL_EDOM, GSL_EUNDRFLW -->
 
119
</p></blockquote></div>
 
120
 
 
121
<div class="defun">
 
122
&mdash; Function: int <b>gsl_sf_bessel_Kn_scaled_array</b> (<var>int nmin, int nmax, double x, double result_array</var>[])<var><a name="index-gsl_005fsf_005fbessel_005fKn_005fscaled_005farray-311"></a></var><br>
 
123
<blockquote><p>This routine computes the values of the scaled irregular cylindrical
 
124
Bessel functions \exp(x) K_n(x) for n from <var>nmin</var> to
 
125
<var>nmax</var> inclusive, storing the results in the array
 
126
<var>result_array</var>. The start of the range <var>nmin</var> must be positive
 
127
or zero.  The domain of the function is x&gt;0. The values are
 
128
computed using recurrence relations for efficiency, and therefore
 
129
may differ slightly from the exact values. 
 
130
<!-- Domain: x > 0.0, nmin >=0, nmax >= nmin -->
 
131
<!-- Conditions: n=nmin,...,nmax -->
 
132
<!-- Exceptional Return Values: GSL_EDOM, GSL_EUNDRFLW -->
 
133
</p></blockquote></div>
 
134
 
 
135
   </body></html>
 
136