log1p
Overloads
| Name | Description |
|---|---|
log1p(bool arg) -> real | Calculates the natural logarithm of 1 plus the given value. |
log1p(real arg) -> real | Calculates the natural logarithm of 1 plus the given value. |
log1p(integer arg) -> real | Calculates the natural logarithm of 1 plus the given value. |
log1p(bool arg) -> real
Calculates the natural logarithm of 1 plus the given value.
Parameters
- arg: The value to add to 1 before calculating the natural logarithm.
log1p(real arg) -> real
Calculates the natural logarithm of 1 plus the given value.
Parameters
- arg: The value to add to 1 before calculating the natural logarithm.
log1p(integer arg) -> real
Calculates the natural logarithm of 1 plus the given value.
Parameters
- arg: The value to add to 1 before calculating the natural logarithm.