-
numpy.deg2rad(x[, out]) =
-
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)
isx * pi / 180
.Examples
>>> np.deg2rad(180) 3.1415926535897931
numpy.deg2rad()
2017-01-10 18:13:37
Please login to continue.