On this page
numpy.lib.scimath.power
lib.scimath.power(x, p)[source]-
Return x to the power p, (x**p).
If
xcontains negative values, the output is converted to the complex domain.- Parameters
-
xarray_like-
The input value(s).
parray_like of ints-
The power(s) to which
xis raised. Ifxcontains multiple values,phas to either be a scalar, or contain the same number of values asx. In the latter case, the result isx[0]**p[0], x[1]**p[1], ....
- Returns
-
outndarray or scalar-
The result of
x**p. Ifxandpare scalars, so isout, otherwise an array is returned.
See also
Examples
>>> np.set_printoptions(precision=4)>>> np.lib.scimath.power([2, 4], 2) array([ 4, 16]) >>> np.lib.scimath.power([2, 4], -2) array([0.25 , 0.0625]) >>> np.lib.scimath.power([-2, 4], 2) array([ 4.-0.j, 16.+0.j])
© 2005–2021 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/1.20/reference/generated/numpy.lib.scimath.power.html