Q:

Write a NumPy program to convert angles from degrees to radians for all elements in a given array

0

Write a NumPy program to convert angles from degrees to radians for all elements in a given array.

Sample Input: Input: [-180., -90., 90., 180.]

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([-180.,  -90.,   90.,  180.])
r1 = np.radians(x)
r2 = np.deg2rad(x)
assert np.array_equiv(r1, r2)
print(r1)

Sample Output:

[-3.14159265 -1.57079633  1.57079633  3.14159265]

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