Python numpy.power()

Python中的numpy.power()

numpy.power(arr1, arr2, out = None, where = True, casting = ‘same_kind’, order = ‘K’, dtype = None) :
第一个数组中的元素被提升到第二个元素的幂值(所有的元素都是逐个发生的)。arr1和arr2必须具有相同的形状,并且arr1中的每个元素必须被提升到arr2中相应的+值;否则将引发一个 ValueError .
参数 :

arr1 : [array_like]输入作为基数的数组或对象。
arr2 : [array_like]输入数组或作为指数的对象。
out : [ndarray, optional]输出数组,其尺寸与输入数组相同,与结果放在一起。
**kwargs : 允许你向一个函数传递长度可变的关键字参数。 当我们想在一个函数中处理命名的参数时,它就会被使用。
where : [array_like, optional]真值意味着在该位置计算通用函数(ufunc),假值意味着在输出中不考虑该值。

返回 :

一个数组,Arr1的元素被提升到Arr2的指数。

代码1

# Python program explaining
# power() function
import numpy as np
  
# input_array
arr1 = [2, 2, 2, 2, 2]
arr2 = [2, 3, 4, 5, 6]
print ("arr1         : ", arr1)
print ("arr1         : ", arr2)
  
# output_array
out = np.power(arr1, arr2)
print ("\nOutput array : ", out)

输出 :

arr1         :  [2, 2, 2, 2, 2]
arr2         :  [2, 3, 4, 5, 6]

Output array :  [ 4  8 16 32 64]

代码2:Arr1的元素升为指数2

# Python program explaining
# power() function
import numpy as np
  
# input_array
arr1 = np.arange(8)
exponent = 2
print ("arr1         : ", arr1)
  
# output_array
out = np.power(arr1, exponent)
print ("\nOutput array : ", out)

输出 :

arr1         :  [0 1 2 3 4 5 6 7]

Output array :  [ 0  1  4  9 16 25 36 49]

代码3:如果arr2有-ve元素,则出现错误

# Python program explaining
# power() function
import numpy as np
  
# input_array
arr1 = [2, 2, 2, 2, 2]
arr2 = [2, -3, 4, -5, 6]
print ("arr1         : ", arr1)
print ("arr2         : ", arr2)
  
# output_array
out = np.power(arr1, arr2)
print ("\nOutput array : ", out)

输出 :

arr1         :  [2, 2, 2, 2, 2]
arr2         :  [2, -3, 4, -5, 6]
ValueError: Integers to negative integer powers are not allowed.

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程