PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_specfun_bessel_k0_real (s18ac)
Purpose
nag_specfun_bessel_k0_real (s18ac) returns the value of the modified Bessel function , via the function name.
Syntax
Description
nag_specfun_bessel_k0_real (s18ac) evaluates an approximation to the modified Bessel function of the second kind .
Note: is undefined for and the function will fail for such arguments.
The function is based on five Chebyshev expansions:
For
,
For
,
For
,
For
,
For
near zero,
, where
denotes Euler's constant. This approximation is used when
is sufficiently small for the result to be correct to
machine precision.
For large , where there is a danger of underflow due to the smallness of , the result is set exactly to zero.
References
Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Parameters
Compulsory Input Parameters
- 1:
– double scalar
-
The argument of the function.
Constraint:
.
Optional Input Parameters
None.
Output Parameters
- 1:
– double scalar
The result of the function.
- 2:
– 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:
-
-
, is undefined. On soft failure the function returns zero.
-
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
Let and be the relative errors in the argument and result respectively.
If
is somewhat larger than the
machine precision (i.e., if
is due to data errors etc.), then
and
are approximately related by:
Figure 1 shows the behaviour of the error amplification factor
However, if
is of the same order as
machine precision, then rounding errors could make
slightly larger than the above relation predicts.
For small
, the amplification factor is approximately
, which implies strong attenuation of the error, but in general
can never be less than the
machine precision.
For large , and we have strong amplification of the relative error. Eventually , which is asymptotically given by , becomes so small that it cannot be calculated without underflow and hence the function will return zero. Note that for large the errors will be dominated by those of the standard function exp.
Further Comments
None.
Example
This example reads values of the argument from a file, evaluates the function at each value of and prints the results.
Open in the MATLAB editor:
s18ac_example
function s18ac_example
fprintf('s18ac example results\n\n');
x = [0.4 0.6 1.4 1.6 2.5 3.5 6 8 10 1000];
result = x;
for j=1:numel(x)
[result(j), ifail] = s18ac(x(j));
end
disp(' x K_0(x)');
fprintf('%12.3e%12.3e\n',[x; result]);
s18ac_plot;
function s18ac_plot
x = [0.01:0.01:0.1,0.12:0.02:4];
for j = 1:numel(x)
[K(j), ifail] = s18ac(x(j));
end
fig1 = figure;
plot(x,K,'-r');
xlabel('x');
ylabel('K_0(x)');
title('Bessel Function K_0(x)');
s18ac example results
x K_0(x)
4.000e-01 1.115e+00
6.000e-01 7.775e-01
1.400e+00 2.437e-01
1.600e+00 1.880e-01
2.500e+00 6.235e-02
3.500e+00 1.960e-02
6.000e+00 1.244e-03
8.000e+00 1.465e-04
1.000e+01 1.778e-05
1.000e+03 0.000e+00
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015