Log constructor

Log(
  1. Expression base,
  2. Expression arg
)

Creates a logarithm function with given base and argument.

For example, to create log_10(2):

base = Number(10);
arg = Number(2);
log = Log(base, arg);

To create a naturally based logarithm, see Ln.

Implementation

Log(Expression base, Expression arg) : super._binary('log', base, arg);