In NumPy, the absolute()
function is used to compute the
numpy.absolute(x, /, out=None, *, where=True)
This function takes the following parameter values:
x
: This represents an input array of values. This argument is mandatory.out
: This represents the location where the result is stored. This is optional.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 optional.Note:ufunc
is short for universal function and it operates on ndarrays, in an element-wise fashion. It also supports other standard features in NumPy.
**kwargs
: This represents other keyword arguments. This is mandatory.This function returns an array of the same shape as the input array passed to it holding the absolute values of the elements of the input array.
import numpy as np# creating an input arrayx = np.array([-1, 6, -2.5, 2])# implementing the absolute() functionmyarray = np.absolute(x)print(x)print(myarray)
numpy
module.array()
function to create an array x
.absolute()
function by passing the input array, x
as the argument. We assign the result to a variable myarray
.x
.myarray
.