-
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
12>>> np.deg2rad(
180
)
3.1415926535897931
numpy.deg2rad()

2025-01-10 15:47:30
Please login to continue.