|
|
- 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 IEEESPExp ()
- SYNOPSIS
- float y
- FUNCTION
- Calculate e^x
- INPUTS
- y
- IEEE single precision floating point number
- RESULT
- IEEE single precision number
flags:
zero : result is zero
negative : 0
overflow : the result was out of range for the IEEE single precision
format
- NOTES
-
- EXAMPLE
- BUGS
-
- SEE ALSO
- MathIEEESingleTrans
- INTERNALS
e^(>= 89): return 0x7f800000;
e^(2^(<=-24)): return one;
|