NAG CL Interface
s18ekc (nag_bessel_j_alpha)

Settings help

CL Name Style:


1 Purpose

s18ekc returns a sequence of values for the Bessel functions J α + n - 1 (x) or J α - n + 1 (x) for real x , non-negative α<1 and n = 1 , 2 , , |N| + 1 .

2 Specification

#include <nag.h>
void  s18ekc (double x, double a, Integer nl, Complex b[], NagError *fail)
The function may be called by the names: s18ekc or nag_bessel_j_alpha.

3 Description

s18ekc evaluates a sequence of values for the Bessel function of the first kind J α (x) , where x is real and nonzero and α is the order with 0 α < 1 . The (|N|+1) -member sequence is generated for orders α , α + 1 , , α + N when N0 . Note that + is replaced by - when N<0 . For positive orders the function may also be called with x=0 , since J q (0) = 0 when q>0 . For negative orders the formula
J -q (x) = cos(πq) J q (x) - sin(πq) Y q (x)  
is used to generate the required sequence.

4 References

Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications

5 Arguments

1: x double Input
On entry: the argument x of the function.
Constraint: if nl<0 , x0.0 .
2: a double Input
On entry: the order α of the first member in the required sequence of function values.
Constraint: 0.0 a < 1.0 .
3: nl Integer Input
On entry: the value of N .
Constraint: abs(nl) 101 .
4: b[×] Complex Output
On exit: with fail.code=NE_NOERROR or fail.code=NW_SOME_PRECISION_LOSS , the required sequence of function values: b (n) contains J α + n - 1 (x) if nl0 and J α - n + 1 (x) otherwise, for n=1,2,,abs(nl) + 1.
5: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

NE_INT
On entry, nl=value .
Constraint: abs(nl) 101 .
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
NE_OVERFLOW_LIKELY
The evaluation has been abandoned due to the likelihood of overflow.
NE_REAL
On entry, a=value .
Constraint: 0.0 a < 1.0 .
NE_REAL_INT
On entry, x=value , nl=value .
Constraint: x0.0 when nl<0 .
NE_TERMINATION_FAILURE
The evaluation has been abandoned due to failure to satisfy the termination condition.
NE_TOTAL_PRECISION_LOSS
The evaluation has been abandoned due to total loss of precision.
NW_SOME_PRECISION_LOSS
The evaluation has been completed but some precision has been lost.

7 Accuracy

All constants in the underlying functions are are specified to approximately 18 digits of precision. If t denotes the number of digits of precision in the floating-point arithmetic being used, then clearly the maximum number of correct digits in the results obtained is limited by p = min(t,18) . Because of errors in argument reduction when computing elementary functions inside the underlying functions are, the actual number of correct digits is limited, in general, by p-s , where s max(1,|log10|x||,|log10|α||) represents the number of digits lost due to the argument reduction. Thus the larger the values of |x| and |α| , the less the precision in the result.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
s18ekc is not threaded in any implementation.

9 Further Comments

None.

10 Example

The example program evaluates J 0 (x) , J 1 (x) , J 2 (x) and J 3 (x) at x=0.5 , and prints the results.

10.1 Program Text

Program Text (s18ekce.c)

10.2 Program Data

Program Data (s18ekce.d)

10.3 Program Results

Program Results (s18ekce.r)