PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_specfun_fresnel_c_vector (s20ar)
Purpose
nag_specfun_fresnel_c_vector (s20ar) returns an array of values for the Fresnel integral .
Syntax
[
f,
ifail] = nag_specfun_fresnel_c_vector(
x, 'n',
n)
Description
nag_specfun_fresnel_c_vector (s20ar) evaluates an approximation to the Fresnel integral
for an array of arguments
, for
.
Note: , so the approximation need only consider .
The function is based on three Chebyshev expansions:
For
,
For
,
where
,
and ,
with .
For small
,
. This approximation is used when
is sufficiently small for the result to be correct to
machine precision.
For large , and . Therefore for moderately large , when is negligible compared with , the second term in the approximation for may be dropped. For very large , when becomes negligible, . However there will be considerable difficulties in calculating accurately before this final limiting value can be used. Since is periodic, its value is essentially determined by the fractional part of . If , where is an integer and , then depends on and on modulo . By exploiting this fact, it is possible to retain some significance in the calculation of either all the way to the very large limit, or at least until the integer part of is equal to the maximum integer allowed on the machine.
References
Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Parameters
Compulsory Input Parameters
- 1:
– double array
-
The argument of the function, for .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the array
x.
, the number of points.
Constraint:
.
Output Parameters
- 1:
– double array
-
, the function values.
- 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:
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
- W
-
Constraint: .
-
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 the
machine precision, then rounding errors could make
slightly larger than the above relation predicts.
For small , and there is no amplification of relative error.
For moderately large values of
,
and the result will be subject to increasingly large amplification of errors. However the above relation breaks down for large values of
(i.e., when
is of the order of the
machine precision); in this region the relative error in the result is essentially bounded by
.
Hence the effects of error amplification are limited and at worst the relative error loss should not exceed half the possible number of significant figures.
Further Comments
None.
Example
This example reads values of
x from a file, evaluates the function at each value of
and prints the results.
Open in the MATLAB editor:
s20ar_example
function s20ar_example
fprintf('s20ar example results\n\n');
x = [0; 0.5; 1; 2; 4; 5; 6; 8; 10; -1; 1000];
[f, ifail] = s20ar(x);
fprintf(' x C(x)\n');
for i=1:numel(x)
fprintf('%12.3e%12.3e\n', x(i), f(i));
end
s20ar example results
x C(x)
0.000e+00 0.000e+00
5.000e-01 4.923e-01
1.000e+00 7.799e-01
2.000e+00 4.883e-01
4.000e+00 4.984e-01
5.000e+00 5.636e-01
6.000e+00 4.995e-01
8.000e+00 4.998e-01
1.000e+01 4.999e-01
-1.000e+00 -7.799e-01
1.000e+03 5.000e-01
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015