Simple types / Numbers / Mathematical operations
Exponentiation
Square root
min and max values
Logarithm
Decimal logarithm
Sine, cosine and tangent
double
number =
512
;
double
logBase =
8
;
double
result =
log
(number)/
log
(logBase);
//result is 3.0