numpy.rad2deg
- 
numpy.rad2deg(x[, out]) =
- 
Convert angles from radians to degrees. Parameters: x : array_like Angle in radians. out : ndarray, optional Array into which the output is placed. Its type is preserved and it must be of the right shape to hold the output. See doc.ufuncs. Returns: y : ndarray The corresponding angle in degrees. See also NotesNew in version 1.3.0. rad2deg(x) is 180 * x / pi.Examples>>> np.rad2deg(np.pi/2) 90.0 
    © 2008–2016 NumPy Developers
Licensed under the NumPy License.
    https://docs.scipy.org/doc/numpy-1.10.1/reference/generated/numpy.rad2deg.html