hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_specfun_bessel_i1_scaled_vector (s18ct)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_specfun_bessel_i1_scaled_vector (s18ct) returns an array of values of the scaled modified Bessel function e-xI1x.

Syntax

[f, ifail] = s18ct(x, 'n', n)
[f, ifail] = nag_specfun_bessel_i1_scaled_vector(x, 'n', n)

Description

nag_specfun_bessel_i1_scaled_vector (s18ct) evaluates an approximation to e-xiI1xi, where I1 is a modified Bessel function of the first kind for an array of arguments xi, for i=1,2,,n. The scaling factor e-x removes most of the variation in I1x.
The function uses the same Chebyshev expansions as nag_specfun_bessel_i1_real_vector (s18at), which returns an array of the unscaled values of I1x.

References

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

Parameters

Compulsory Input Parameters

1:     xn – double array
The argument xi of the function, for i=1,2,,n.

Optional Input Parameters

1:     n int64int32nag_int scalar
Default: the dimension of the array x.
n, the number of points.
Constraint: n0.

Output Parameters

1:     fn – double array
e-xiI1xi, the function values.
2:     ifail int64int32nag_int scalar
ifail=0 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.

W  ifail=1
Constraint: n0.
   ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

Relative errors in the argument are attenuated when propagated into the function value. When the accuracy of the argument is essentially limited by the machine precision, the accuracy of the function value will be similarly limited by at most a small multiple of the machine precision.

Further Comments

None.

Example

This example reads values of x from a file, evaluates the function at each value of xi and prints the results.
function s18ct_example


fprintf('s18ct example results\n\n');

x = [0; 0.5; 1; 3; 6; 10; 1000; -1];

[f, ifail] = s18ct(x);

fprintf('     x        e^-|x| I_1(x)\n');
for i=1:numel(x)
  fprintf('%12.3e%12.3e\n', x(i), f(i));
end


s18ct example results

     x        e^-|x| I_1(x)
   0.000e+00   0.000e+00
   5.000e-01   1.564e-01
   1.000e+00   2.079e-01
   3.000e+00   1.968e-01
   6.000e+00   1.521e-01
   1.000e+01   1.213e-01
   1.000e+03   1.261e-02
  -1.000e+00  -2.079e-01

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015