* Calculate the logarithm of a value. For matrices, the function is * evaluated element wise. * @param base Optional base for the logarithm. If not provided, the * natural logarithm of x is calculated. Default value: e.
(
this: MathJsChain<T>,
base?: number | BigNumber | Complex
)
| 5606 | * natural logarithm of x is calculated. Default value: e. |
| 5607 | */ |
| 5608 | log<T extends number | BigNumber | Complex | MathCollection>( |
| 5609 | this: MathJsChain<T>, |
| 5610 | base?: number | BigNumber | Complex |
| 5611 | ): MathJsChain<NoLiteralType<T>> |
no outgoing calls