|
|
◆ Log1p()
| Function Log1p |
( |
X As |
Double, |
|
|
Optional Info As |
Long |
|
) |
| |
ln(1 + x)
- Purpose
- Computes ln(1 + x). It may be more accurate than using Log(1 + X) when x is near 0.
- Returns
- Double
ln(1 + x).
- Parameters
-
| [in] | X | Argument x. (X > -1) |
| [out] | Info | (Optional)
= 0: Successful exit.
= -1: The argument X had an illegal value. (X < -1)
= 1: Floating point range error. |
|