EXP (x) |
Purpose | Returns the exponential ex e is the mathematical constant (Eulers number) which is approximately = 2.71828, |
Examples | A# = EXP(0.5) B# = EXP(-0.5) C# = EXP(0.0) D# = EXP(100.0) |
Comments: | A# should contain the value 1.6487. B# should contain the value 0.6065 C# should contain the value 1.0 D# should contain the value +Infinity (it is out of range for a single-precision float) |