GNU Octave
3.8.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
Main Page
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Pages
liboctave
cruft
amos
cbunk.f
Go to the documentation of this file.
1
SUBROUTINE
cbunk
(Z, FNU, KODE, MR, N, Y, NZ, TOL, ELIM, ALIM)
2
C***BEGIN PROLOGUE CBUNK
3
C***REFER TO CBESK,CBESH
4
C
5
C CBUNK COMPUTES THE K BESSEL FUNCTION FOR FNU.GT.FNUL.
6
C ACCORDING TO THE UNIFORM ASYMPTOTIC EXPANSION FOR K(FNU,Z)
7
C IN CUNK1 AND THE EXPANSION FOR H(2,FNU,Z) IN CUNK2
8
C
9
C***ROUTINES CALLED CUNK1,CUNK2
10
C***END PROLOGUE CBUNK
11
COMPLEX
y, z
12
REAL
alim, ax, ay, elim, fnu, tol, xx, yy
13
INTEGER
kode, mr, n, nz
14
dimension
y(n)
15
nz = 0
16
xx =
REAL
(z)
17
yy = aimag(z)
18
ax =
abs
(xx)*1.7321e0
19
ay =
abs
(yy)
20
IF
(ay.GT.ax) go to 10
21
C-----------------------------------------------------------------------
22
C ASYMPTOTIC EXPANSION FOR K(FNU,Z) FOR LARGE FNU APPLIED IN
23
C -PI/3.LE.ARG(Z).LE.PI/3
24
C-----------------------------------------------------------------------
25
CALL
cunk1
(z, fnu, kode, mr, n, y, nz, tol, elim, alim)
26
go to 20
27
10
CONTINUE
28
C-----------------------------------------------------------------------
29
C ASYMPTOTIC EXPANSION FOR H(2,FNU,Z*EXP(M*HPI)) FOR LARGE FNU
30
C APPLIED IN PI/3.LT.ABS(ARG(Z)).LE.PI/2 WHERE M=+I OR -I
31
C AND HPI=PI/2
32
C-----------------------------------------------------------------------
33
CALL
cunk2
(z, fnu, kode, mr, n, y, nz, tol, elim, alim)
34
20
CONTINUE
35
RETURN
36
END
Generated on Mon Dec 30 2013 03:04:45 for GNU Octave by
1.8.1.2