PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_specfun_tan (s07aa)
Purpose
nag_specfun_tan (s07aa) returns the value of the circular tangent, , via the function name.
Syntax
Description
nag_specfun_tan (s07aa) calculates an approximate value for the circular tangent of its argument,
. It is based on the Chebyshev expansion
where
and
.
The reduction to the standard range is accomplished by taking
where
is an integer and
,
i.e., where .
From the properties of
it follows that
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.
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:
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
-
The function has been called with an argument that is larger in magnitude than ; the default result returned is zero.
- W
-
The function has been called with an argument that is too close (as determined using the relative tolerance
) to an odd multiple of
, at which the function is infinite; the function returns a value with the correct sign but a more or less arbitrary but large magnitude (see
Accuracy).
-
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
If
and
are the relative errors in the argument and result respectively, then in principle
That is a relative error in the argument,
, is amplified by at least a factor
in the result.
Similarly if
is the absolute error in the result this is given by
The equalities should hold if
is greater than the
machine precision (
is a result of data errors etc.) but if
is simply the round-off error in the machine it is possible that internal calculation rounding will lose an extra figure.
The graphs below show the behaviour of these amplification factors.
Figure 1
In the principal range it is possible to preserve relative accuracy even near the zero of at but at the other zeros only absolute accuracy is possible. Near the infinities of both the relative and absolute errors become infinite and the function must fail (error ).
If
is odd and
the function could not return better than two figures and in all probability would produce a result that was in error in its most significant figure. Therefore the function fails and it returns the value
which is the value of the tangent at the nearest argument for which a valid call could be made.
Accuracy is also unavoidably lost if the function is called with a large argument. If the function fails (error ) and returns zero.
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:
s07aa_example
function s07aa_example
fprintf('s07aa example results\n\n');
x = [-2.0 -0.5 1.0 3.0 1.5708];
n = size(x,2);
result = x;
for j=1:n
[result(j), ifail] = s07aa(x(j));
end
disp(' x tan(x)');
fprintf('%12.4e%12.4e\n',[x; result]);
s07aa example results
x tan(x)
-2.0000e+00 2.1850e+00
-5.0000e-01 -5.4630e-01
1.0000e+00 1.5574e+00
3.0000e+00 -1.4255e-01
1.5708e+00 -2.7224e+05
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015