numpy.power() 會以b 陣列的元素作為a 陣列元素的次方,計算後成為新陣列,下方的例子會回傳2、3、4 的3 次方。 import numpy as np a = np.array([2,3,4]) b ...
確定! 回上一頁