Creates a natural logarithm function with given argument.
For example, to create ln(10):
num10 = new Number(10);
ln = new Ln(num10);
To create a logarithm with arbitrary base, see Log.
Source
Ln(Expression arg): super._ln(arg);
Creates a natural logarithm function with given argument.
For example, to create ln(10):
num10 = new Number(10);
ln = new Ln(num10);
To create a logarithm with arbitrary base, see Log.
Ln(Expression arg): super._ln(arg);