airyzo Subroutine

public subroutine airyzo(nt, kf, xa, xb, xc, xd)

************80

! AIRYZO computes the first NT zeros of Ai(x) and Ai'(x).

Discussion:

Compute the first NT zeros of Airy functions Ai(x) and Ai'(x), 
a and a', and the associated values of Ai(a') and Ai'(a); and 
the first NT zeros of Airy functions Bi(x) and Bi'(x), b and
b', and the associated values of Bi(b') and Bi'(b).

Licensing:

This routine is copyrighted by Shanjie Zhang and Jianming Jin.  However, 
they give permission to incorporate this routine into a user program 
provided that the copyright is acknowledged.

Modified:

14 March 2012

Author:

Shanjie Zhang, Jianming Jin

Reference:

Shanjie Zhang, Jianming Jin,
Computation of Special Functions,
Wiley, 1996,
ISBN: 0-471-11963-6,
LC: QA351.C45.

Parameters:

Input, integer ( kind = 4 ) NT, the number of zeros.

Input, integer ( kind = 4 ) KF, the function code.
1 for Ai(x) and Ai'(x);
2 for Bi(x) and Bi'(x).

Output, real ( kind = 8 ) XA(m), a, the m-th zero of Ai(x) or
b, the m-th zero of Bi(x).

Output, real ( kind = 8 ) XB(m), a', the m-th zero of Ai'(x) or
b', the m-th zero of Bi'(x).

Output, real ( kind = 8 ) XC(m), Ai(a') or Bi(b').

Output, real ( kind = 8 ) XD(m), Ai'(a) or Bi'(b)

Arguments

Type IntentOptional Attributes Name
integer(kind=4) :: nt
integer(kind=4) :: kf
real(kind=8) :: xa(nt)
real(kind=8) :: xb(nt)
real(kind=8) :: xc(nt)
real(kind=8) :: xd(nt)

Calls

proc~~airyzo~~CallsGraph proc~airyzo airyzo proc~airyb airyb proc~airyzo->proc~airyb