asNaturalLogarithm method

Expression asNaturalLogarithm()

Returns the natural from of this logarithm. E.g. log_10(2) = ln(2) / ln(10)

This method is used to determine the derivation of a logarithmic expression.

Implementation

Expression asNaturalLogarithm() => Ln(arg) / Ln(base);