Write a NumPy program to convert angles from radians to degrees for all elements in a given array.
Sample Input: [-np.pi, -np.pi/2, np.pi/2, np.pi]
import numpy as np x = np.array([-np.pi, -np.pi/2, np.pi/2, np.pi]) r1 = np.degrees(x) r2 = np.rad2deg(x) assert np.array_equiv(r1, r2) print(r1)
Sample Output:
[-180. -90. 90. 180.]
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer