PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_specfun_bessel_i_complex (s18de)
Purpose
nag_specfun_bessel_i_complex (s18de) returns a sequence of values for the modified Bessel functions for complex , non-negative
and , with an option for exponential scaling.
Syntax
Description
nag_specfun_bessel_i_complex (s18de) evaluates a sequence of values for the modified Bessel function , where is complex, , and is the real, non-negative order. The -member sequence is generated for orders . Optionally, the sequence is scaled by the factor .
The function is derived from the function CBESI in
Amos (1986).
Note: although the function may not be called with
less than zero, for negative orders the formula
may be used (for the Bessel function
, see
nag_specfun_bessel_k_complex (s18dc)).
When is greater than , extra values of are computed using recurrence relations.
For very large
or
, argument reduction will cause total loss of accuracy, and so no computation is performed. For slightly smaller
or
, the computation is performed but results are accurate to less than half of
machine precision. If
is too large and the unscaled function is required, there is a risk of overflow and so no computation is performed. In all the above cases, a warning is given by the function.
References
Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Amos D E (1986) Algorithm 644: A portable package for Bessel functions of a complex argument and non-negative order ACM Trans. Math. Software 12 265–273
Parameters
Compulsory Input Parameters
- 1:
– double scalar
-
, the order of the first member of the sequence of functions.
Constraint:
.
- 2:
– complex scalar
-
The argument of the functions.
- 3:
– int64int32nag_int scalar
-
, the number of members required in the sequence .
Constraint:
.
- 4:
– string (length ≥ 1)
-
The scaling option.
- The results are returned unscaled.
- The results are returned scaled by the factor .
Constraint:
or .
Optional Input Parameters
None.
Output Parameters
- 1:
– complex array
-
The required function values: contains
, for .
- 2:
– int64int32nag_int scalar
-
The number of components of
cy that are set to zero due to underflow.
If , then elements are set to zero.
- 3:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
-
On entry, | , |
or | , |
or | or . |
-
-
No computation has been performed due to the likelihood of overflow, because real(
z) is greater than a machine-dependent threshold value. This error exit can only occur when
.
- W
-
The computation has been performed, but the errors due to argument reduction in elementary functions make it likely that the results returned by
nag_specfun_bessel_i_complex (s18de) are accurate to less than half of
machine precision. This error exit may occur when either
or
is greater than a machine-dependent threshold value.
-
-
No computation has been performed because the errors due to argument reduction in elementary functions mean that all precision in results returned by nag_specfun_bessel_i_complex (s18de) would be lost. This error exit may occur when either or is greater than a machine-dependent threshold value.
-
-
No results are returned because the algorithm termination condition has not been met. This may occur because the arguments supplied to nag_specfun_bessel_i_complex (s18de) would have caused overflow or underflow.
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
All constants in nag_specfun_bessel_i_complex (s18de) are given to approximately digits of precision. Calling 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 . Because of errors in argument reduction when computing elementary functions inside nag_specfun_bessel_i_complex (s18de), the actual number of correct digits is limited, in general, by , where represents the number of digits lost due to the argument reduction. Thus the larger the values of and , the less the precision in the result. If nag_specfun_bessel_i_complex (s18de) is called with , then computation of function values via recurrence may lead to some further small loss of accuracy.
If function values which should nominally be identical are computed by calls to nag_specfun_bessel_i_complex (s18de) with different base values of and different , the computed values may not agree exactly. Empirical tests with modest values of and have shown that the discrepancy is limited to the least significant – digits of precision.
Further Comments
The time taken for a call of nag_specfun_bessel_i_complex (s18de) is approximately proportional to the value of , plus a constant. In general it is much cheaper to call nag_specfun_bessel_i_complex (s18de) with greater than , rather than to make separate calls to nag_specfun_bessel_i_complex (s18de).
Paradoxically, for some values of and , it is cheaper to call nag_specfun_bessel_i_complex (s18de) with a larger value of than is required, and then discard the extra function values returned. However, it is not possible to state the precise circumstances in which this is likely to occur. It is due to the fact that the base value used to start recurrence may be calculated in different regions for different , and the costs in each region may differ greatly.
Note that if the function required is
or
, i.e.,
or
, where
is real and positive, and only a single function value is required, then it may be much cheaper to call
nag_specfun_bessel_i0_real (s18ae),
nag_specfun_bessel_i1_real (s18af),
nag_specfun_bessel_i0_scaled (s18ce) or
nag_specfun_bessel_i1_scaled (s18cf), depending on whether a scaled result is required or not.
Example
This example prints a caption and then proceeds to read sets of data from the input data stream. The first datum is a value for the order
fnu, the second is a complex value for the argument,
z, and the third is a character value
to set the argument
scal. The program calls the function with
to evaluate the function for orders
fnu and
, and it prints the results. The process is repeated until the end of the input data stream is encountered.
Open in the MATLAB editor:
s18de_example
function s18de_example
fprintf('s18de example results\n\n');
n = int64(2);
nu = [0 2.3 2.12 5.5 5.5];
z = [0.3 - 0.4i; 2 + 0i; -1 + 0i; -6.1 + 9.8i; -6.1 + 9.8i];
scal = {'U'; 'U'; 'U'; 'U'; 'S'};
fprintf(' nu z scaled?');
fprintf(' I_{nu+%d}(z) ',[1:n]);
fprintf(' nz\n');
for i=1:numel(nu)
[cy, nz, ifail] = s18de(nu(i), complex(z(i)), n, scal{i});
fprintf('%7.3f %7.3f%+7.3fi', nu(i), real(z(i)), imag(z(i)));
if scal{i} == 'U'
fprintf(' unscaled');
else
fprintf(' scaled');
end
for j = 1:n
fprintf(' %7.3f%+8.3fi', real(cy(j)), imag(cy(j)));
end
fprintf('%3d\n',nz);
end
s18de example results
nu z scaled? I_{nu+1}(z) I_{nu+2}(z) nz
0.000 0.300 -0.400i unscaled 0.982 -0.059i 0.143 -0.203i 0
2.300 2.000 +0.000i unscaled 0.500 +0.000i 0.142 +0.000i 0
2.120 -1.000 +0.000i unscaled 0.103 +0.041i -0.016 -0.006i 0
5.500 -6.100 +9.800i unscaled 22.534 +13.710i -19.635 -1.660i 0
5.500 -6.100 +9.800i scaled 0.051 +0.031i -0.044 -0.004i 0
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015