NAG Library Routine Document
s01eaf
(exp_complex)
1
Purpose
s01eaf evaluates the exponential function , for
complex
.
2
Specification
Fortran Interface
Complex (Kind=nag_wp) | :: | s01eaf | Integer, Intent (Inout) | :: |
ifail | Complex (Kind=nag_wp), Intent (In) | :: |
z |
|
C Header Interface
#include nagmk26.h
Complex |
s01eaf_ (
const Complex *z,
Integer *ifail) |
|
3
Description
s01eaf evaluates the exponential function , taking care to avoid machine overflow, and giving a warning if the result cannot be computed to more than half precision. The function is evaluated as , where and are the real and imaginary parts respectively of .
Since
and
are less than or equal to
in magnitude, it is possible that
may overflow although
or
does not. In this case the alternative formula
is used for the real part of the result, and
for the imaginary part. If either part of the result still overflows, a warning is returned through argument
ifail.
If
is too large, precision may be lost in the evaluation of
and
. Again, a warning is returned through
ifail.
4
References
None.
5
Arguments
- 1: – Complex (Kind=nag_wp)Input
-
On entry: the argument of the function.
- 2: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
The real part of the result overflows, and is set to the largest safe number with the correct sign. The imaginary part of the result is meaningful.
-
The imaginary part of the result overflows, and is set to the largest safe number with the correct sign. The real part of the result is meaningful.
-
Both real and imaginary parts of the result overflow, and are set to the largest safe number with the correct signs.
-
The computed result is accurate to less than half precision, due to the size of .
-
The computed result has no precision, due to the size of , and is set to zero.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
Accuracy is limited in general only by the accuracy of the standard functions in the computation of
,
and
, where
,
. As
gets larger, precision will probably be lost due to argument reduction in the evaluation of the sine and cosine functions, until the warning error
occurs when
gets larger than
, where
is the
machine precision. Note that on some machines, the intrinsic functions SIN and COS will not operate on arguments larger than about
, and so
ifail can never return as
.
In the comparatively rare event that the result is computed by the formulae and , a further small loss of accuracy may be expected due to rounding errors in the logarithmic function.
8
Parallelism and Performance
s01eaf is not threaded in any implementation.
None.
10
Example
This example reads values of the argument from a file, evaluates the function at each value of and prints the results.
10.1
Program Text
Program Text (s01eafe.f90)
10.2
Program Data
Program Data (s01eafe.d)
10.3
Program Results
Program Results (s01eafe.r)