The sqrt()
function in NumPy computes the non-negative square root of each element of an input array.
numpy.sqrt(x, /, out=None, *, where=True)
The sqrt()
function takes the following parameter values:
x
: This represents an input array of values. This is a required parameter. out
: This represents the location where the result is stored. This is an optional parameter. where
: This is the condition over which the input is being 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 an optional parameter. **kwargs
: This represents other keyword arguments. This is an optional parameter. The sqrt()
function returns an array of the same shape as the input array passed to it. This array holds the positive square root of the elements in it.
import numpy as np# creating an input array of complex valuesx = np.array([1, 4, 9, 16, 25, 36])# implementing the sqrt() functionmyarray = np.sqrt(x)print(x)print(myarray)
numpy
module.x
, with complex values using the array()
function.sqrt()
function on the input array and assign the result to a variable, myarray
.x
.myarray
.