dpnp.degrees
- dpnp.degrees(x1)[source]
Convert angles from radians to degrees.
For full documentation refer to
numpy.degrees
.Limitations
Input array is supported as
dpnp.ndarray
. Input array data types are limited by supported DPNP Data types.See also
dpnp.rad2deg
convert angles from radians to degrees.Examples
>>> import dpnp as np >>> rad = np.arange(6.) * np.pi/6 >>> out = np.degrees(rad) >>> [i for i in out] [0.0, 30.0, 60.0, 90.0, 120.0, 150.0]