|
|
- NAME
- #include <aros/libcall.h>
#include <proto/mathieeesingbas.h>
#include <proto/mathieeesingtrans.h>
#include <proto/exec.h>
#include <exec/types.h>
#include <libraries/mathieeesp.h>
float IEEESPCosh ()
- SYNOPSIS
- float y
- FUNCTION
- Calculate the hyperbolic cosine of the IEEE single precision number
- INPUTS
- y
- IEEE single precision floating point number
- RESULT
- IEEE single precision floating point number
flags:
zero : result is zero
negative : 0 (not possible)
overflow : result too big for ffp-number
- NOTES
-
- EXAMPLE
- BUGS
-
- SEE ALSO
- MathIEEESingleTrans
- INTERNALS
cosh(x) = (1/2)*( e^x + e^(-x) )
cosh( |x| >= 9 ) = (1/2) * (e^x);
|