Easypt

math

..Root.math

Child of:

Root

Signatures:

Object

Members:

Double numbers:

Functions returning Int:

Functions taking one Double or Int and returning Double:

Functions taking two Doubles or Ints and returning Double:

Example:

import("math");

log(math.log(math.pow(math.e, 2)));
log(math.cos(math.pi));
log(math.asin(1));
log(math.atan2(1, 1));
log(math.random());

Possible output:

2
-1
1.5708
0.785398
1804