1. 程式人生 > >numpy之一些名稱含義(持續更新)

numpy之一些名稱含義(持續更新)

AR color ndarray spa pro mean product 持續更新 ati

1 dtype:data type 數據類型
2 ndarray:n-dimension n維,ndarray:n維數組(多維數組)
3 mean:平均值
4 std:standard deviation:標準差
5 prod:product:乘積
6 revel :與flatten相同,flatten:展平,即將數組展平。不過flatten函數會請求分配內存保存結果,而ravel函數只是返回數組的一個視圖(view)。
7 reshape:就是可以創建一個改變了尺寸的新數組。

numpy之一些名稱含義(持續更新)