import numpy as np a = np.array([[1, 2], [3, 4]], dtype = float) #建立一個2*2的array,裡面元素型態為float b = np.sum(a, axis = 0) #將矩陣的元素沿著直的的 ...
確定! 回上一頁