-
numpy.fabs(x[, out]) =
-
Compute the absolute values element-wise.
This function returns the absolute values (positive magnitude) of the data in
x
. Complex values are not handled, useabsolute
to find the absolute values of complex data.Parameters: x : array_like
The array of numbers for which the absolute values are required. If
x
is a scalar, the resulty
will also be a scalar.out : ndarray, optional
Array into which the output is placed. Its type is preserved and it must be of the right shape to hold the output. See doc.ufuncs.
Returns: y : ndarray or scalar
The absolute values of
x
, the returned values are always floats.Examples
>>> np.fabs(-1) 1.0 >>> np.fabs([-1.2, 1.2]) array([ 1.2, 1.2])
numpy.fabs()
2017-01-10 18:13:50
Please login to continue.