This is documentation for an old release of NumPy (version 1.6.0). Read this page in the documentation of the latest stable release (version > 1.17).
Convert angles from radians to degrees.
Parameters : | x : array_like
out : ndarray, optional
|
---|---|
Returns : | y : ndarray
|
See also
Notes
New in version 1.3.0.
rad2deg(x) is 180 * x / pi.
Examples
>>> np.rad2deg(np.pi/2)
90.0