Q:

Write a NumPy program to calculate 2p for all elements in a given array

0

Write a NumPy program to calculate 2p for all elements in a given array.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

import numpy as np
x = np.array([1., 2., 3., 4.], np.float32)
print("Original array: ")
print(x)
print("\n2^p for all the elements of the said array:")
r1 = np.exp2(x)
r2 = 2 ** x
assert np.allclose(r1, r2)
print(r1)

Sample Output:

Original array: 
[1. 2. 3. 4.]

2^p for all the elements of the said array:
[ 2.  4.  8. 16.]

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now