
Last chance! 50% off unlimited learning
Sale ends in
pow2(f, e)
f * 2^e
for corresponding elements of f
and e
. If e
is missing, it sets e
to f
and f
to 1.
Imaginary parts of complex values are ignored unless e
is missing.
nextpow2
pow2(c(0, 1, 2, 3)) # 1 2 4 8
pow2(c(0, -1, 2, 3), c(0,1,-2,3)) # 0.0 -2.0 0.5 24.0
pow2(1i) # 0.7692389+0.6389613i
# For IEEE arithmetic...
pow2(1/2, 1) # 1
pow2(pi/4, 2) # pi
pow2(-3/4, 2) # -3
pow2(1/2, -51) # .Machine$double.eps
pow2(1/2, -1021) # .Machine$double.xmin
Run the code above in your browser using DataLab