Ln constructor

Ln(
  1. Expression arg
)

Creates a natural logarithm function with given argument.

For example, to create ln(10):

num10 = Number(10);
ln = Ln(num10);

To create a logarithm with arbitrary base, see Log.

Implementation

Ln(super.arg) : super._ln();