Numpy數(shù)組操作的基礎(chǔ)函數(shù)有哪些

小樊
82
2024-07-15 18:33:36

Numpy數(shù)組操作的基礎(chǔ)函數(shù)包括:

  1. np.array():將輸入數(shù)據(jù)(列表、元組、數(shù)組或其他序列)轉(zhuǎn)換為數(shù)組。
  2. np.arange():創(chuàng)建一個(gè)等差數(shù)組。
  3. np.linspace():創(chuàng)建一個(gè)等間隔數(shù)組。
  4. np.zeros():創(chuàng)建一個(gè)全零數(shù)組。
  5. np.ones():創(chuàng)建一個(gè)全一數(shù)組。
  6. np.eye():創(chuàng)建一個(gè)單位矩陣。
  7. np.random.rand():創(chuàng)建一個(gè)隨機(jī)數(shù)組。
  8. np.reshape():改變數(shù)組的形狀。
  9. np.concatenate():連接兩個(gè)或多個(gè)數(shù)組。
  10. np.stack():沿著新軸堆疊數(shù)組。
  11. np.hstack():水平堆疊數(shù)組。
  12. np.vstack():垂直堆疊數(shù)組。
  13. np.split():將數(shù)組分割為多個(gè)子數(shù)組。
  14. np.transpose():轉(zhuǎn)置數(shù)組。
  15. np.flip():翻轉(zhuǎn)數(shù)組的元素。
  16. np.sort():對(duì)數(shù)組進(jìn)行排序。
  17. np.unique():返回?cái)?shù)組中唯一值的集合。

0