This module is for evaluating several useful real-valued functions that are not always available in Fortran compilers.
More...
|
| real(dp) function | ahav_d (a) |
| | Arc-haversine function for double precision real.
|
| |
| real(sp) function | ahav_s (a) |
| | Arc-haversine function for single precision real.
|
| |
| real(dp) function | ahavh_d (a) |
| | Hyperbolic arc-haversine for double precision real.
|
| |
| real(sp) function | ahavh_s (a) |
| | Hyperbolic arc-haversine for single precision real.
|
| |
| real(dp) function | atanh_d (t) |
| | Hyperbolic arc-tangent for double precision real.
|
| |
| real(sp) function | atanh_s (t) |
| | Hyperbolic arc-tangent for single precision real.
|
| |
| real(dp) function | gd_d (x) |
| | Gudermannian function (related to Mercator map projections)
|
| |
| real(sp) function | gd_s (x) |
| | Gudermannian function (related to Mercator map projections)
|
| |
| real(dp) function | gdi_d (y) |
| | Inverse Gudermannian function for double precision real.
|
| |
| real(sp) function | gdi_s (y) |
| | Inverse Gudermannian function for single precision real.
|
| |
| real(dp) function | hav_d (t) |
| | Haversine function for double precision real (for geometry on the sphere).
|
| |
| real(sp) function | hav_s (t) |
| | Haversine function for single precision real (for geometry on the sphere).
|
| |
| real(dp) function | havh_d (t) |
| | Hyperbolic-haversine for double precision real (for pseudosphere geometry).
|
| |
| real(sp) function | havh_s (t) |
| | Hyperbolic-haversine for single precision real (for pseudosphere geometry).
|
| |
| real(dp) function | sech_d (x) |
| | Hyperbolic secant for double precision real.
|
| |
| real(sp) function | sech_s (x) |
| | Hyperbolic secant for single precision real.
|
| |
| real(dp) function | sechs_d (x) |
| | Hyperbolic secant-squared function (logistic distribution).
|
| |
| real(sp) function | sechs_s (x) |
| | Hyperbolic secant-squared function (logistic distribution).
|
| |
| real(dp) function | sinhox_d (x) |
| | Evaluate the symmetric real function sinh(x)/x.
|
| |
| real(dp) function | sinhoxm_d (x) |
| | Evaluate the symmetric real function sinh(x)/x-1.
|
| |
| real(dp) function | sinox_d (x) |
| | Evaluate the symmetric real function sin(x)/x.
|
| |
| real(dp) function | sinoxm_d (x) |
| | Evaluate the symmetric real function sin(x)/x-1, still accurate near x=0.
|
| |
This module is for evaluating several useful real-valued functions that are not always available in Fortran compilers.
These have applications in map transformations, spherical and pseudo-spherical surface geometry, probability distributions, and splines.
- Author
- R. J. Purser