log1p
log(1 + x) accurately for small values of x.
📝Syntax
R = log1p(M)
📥Input Arguments
Parameter Description
M a variable
📤Output Arguments
Parameter Description
R result of log(1 + x) accurately for small values of x.
📄Description

log1p computes log(1 + x) accurately for small values of x.

💡Examples
x = [1+i,-i;i,2i];
r = log1p(x)
🔗See Also
log
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub