numpy.deg2rad¶
- numpy.deg2rad(x[, out]) = <ufunc 'deg2rad'>¶
Convert angles from degrees to radians.
Parameters: x : array_like
Angles in degrees.
Returns: y : ndarray
The corresponding angle in radians.
See also
Notes
New in version 1.3.0.
deg2rad(x) is x * pi / 180.
Examples
>>> np.deg2rad(180) 3.1415926535897931