The numpy.radians()
function in Python is used to convert the angles in a given array from degrees to radians.
numpy.radians(x, /, out=None, *, where=True)
The numpy.radians()
function takes the following parameter values:
x
: This represents the input array in degrees. This parameter value is required for the function to work.out
: This represents a location where the result is stored. This is an optional parameter value.where
: This is the condition over which the input is broadcast. At a given location where this condition is True
, the resulting array will be set to the ufunc result. Otherwise, the resulting array will retain its original value. This is also an optional parameter value.**kwargs
: This represents other keyword arguments. This is an optional parameter value.The numpy.radians()
function returns the corresponding radians of the degree values of the angles.
import numpy as np# creating an arrayx = np.array([30, 45, 60, 90, 180])# converting the degrees to radiansmyarray = np.radians(x)print(myarray)
numpy
module.x
, using the array()
method.np.radians()
function on the array. Then, we assign the result to a variable called myarray
.myarray
to the console.