二、flatten函數範例. (一) order='C'轉換. import numpy as np a = np.array([ [1,2,3] ,[4,5,6]]) a.flatten('C') 結果: array([1, 2, 3, 4, 5, 6]) ...
確定! 回上一頁