Answers for "randian angle to degrees using numpy"

0

randian angle to degrees using numpy

>>> rad = np.arange(12.)*np.pi/6
>>> np.degrees(rad)
array([   0.,   30.,   60.,   90.,  120.,  150.,  180.,  210.,  240.,
        270.,  300.,  330.])
Posted by: Guest on May-10-2020

Code answers related to "randian angle to degrees using numpy"

Python Answers by Framework

Browse Popular Code Answers by Language