RealHypBessel:
CEDAR
DEFINITIONS =
BEGIN
SinH, CosH, TanH, CotH: PROC [REAL] RETURNS [REAL];
J0:
PROC [
REAL]
RETURNS [
REAL];
Bessel function of first kind of order 0
J1:
PROC [
REAL]
RETURNS [
REAL];
Bessel function of first kind of order 1
Jn:
PROC [
INT, REAL]
RETURNS [
REAL];
Bessel function of first kind of order n
Y0:
PROC [
REAL]
RETURNS [
REAL];
Bessel function of second kind of order 0
Y1:
PROC [
REAL]
RETURNS [
REAL];
Bessel function of second kind of order 1
Yn:
PROC [
INT, REAL]
RETURNS [
REAL];
Bessel function of second kind of order n
END.