Exponents
kodingwindow@kw:~$ octave
...
octave> e
ans = 2.7183

octave> exp(0)
ans = 1

octave> expm1(0)
ans = 0

octave> exp(1)
ans = 2.7183

octave> expm1(1)
ans = 1.7183

octave> exp(2)
ans = 7.3891

octave> expm1(2)
ans = 6.3891
Logarithms
octave> log(0)
ans = -Inf

octave> log(1)
ans = 0

octave> log1p(0)
ans = 0

octave> log1p(1)
ans = 0.6931

octave> log(-1)
ans =       0 + 3.1416i

octave> reallog(0)
ans = -Inf

octave> reallog(1)
ans = 0

octave> reallog(-1)
error: reallog: produced complex result

octave> log10(0)
ans = -Inf

octave> log10(1)
ans = 0

octave> log10(2)
ans = 0.3010

octave> log2(0)
ans = -Inf

octave> log2(1)
ans = 0

octave> log2(2)
ans = 1
Power, Square root and Cube root functions
octave> pow2(10)
ans = 1024

octave:80> realpow(2,10)
ans = 1024

octave> sqrt(100)
ans = 10

octave> sqrt(-1)
ans =  0 + 1i

octave> realsqrt(10)
ans = 3.1623

octave> realsqrt(-1)
error: realsqrt: produced complex result

octave> cbrt(27)
ans = 3.0000

octave> nthroot(1,2)
ans = 1

octave> nthroot(4,2)
ans = 2
(4) ^ (1 / 2)
Advertisement