Python中的Numpy入門教程
1、Numpy是什麼
很簡單,Numpy是Python的一個科學計算的庫,提供了矩陣運算的功能,其一般與Scipy、matplotlib一起使用。其實,list已經提供了類似於矩陣的表示形式,不過numpy為我們提供了更多的函式。如果接觸過matlab、scilab,那麼numpy很好入手。 在以下的程式碼示例中,總是先匯入了numpy:
>>> print np.version.version
1.6.2
2、多維陣列
多維陣列的型別是:numpy.ndarray。
使用numpy.array方法
以list或tuple變數為引數產生一維陣列:
[1 2 3 4]
>>> print np.array((1.2,2,3,4))
[ 1.2 2. 3. 4. ]
>>> print type(np.array((1.2,2,3,4)))
<type `numpy.ndarray`>
以list或tuple變數為元素產生二維陣列:
[[1 2]
[3 4]]
生成陣列的時候,可以指定資料型別,例如numpy.int32, numpy.int16, and numpy.float64等:
>>> print np.array((1.2,2,3,4), dtype=np.int32)
[1 2 3 4]
使用numpy.arange方法
[ 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14]
>>> print type(np.arange(15))
<type `numpy.ndarray`>
>>> print np.arange(15).reshape(3,5)
[[ 0 1 2 3 4]
[ 5 6 7 8 9]
[10 11 12 13 14]]
>>> print type(np.arange(15).reshape(3,5))
<type `numpy.ndarray`>
使用numpy.linspace方法
例如,在從1到3中產生9個數:
[ 1. 1.25 1.5 1.75 2. 2.25 2.5 2.75 3. ]
使用numpy.zeros,numpy.ones,numpy.eye等方法可以構造特定的矩陣
例如:
[[ 0. 0. 0. 0.]
[ 0. 0. 0. 0.]
[ 0. 0. 0. 0.]]
>>> print np.ones((3,4))
[[ 1. 1. 1. 1.]
[ 1. 1. 1. 1.]
[ 1. 1. 1. 1.]]
>>> print np.eye(3)
[[ 1. 0. 0.]
[ 0. 1. 0.]
[ 0. 0. 1.]]
建立一個三維陣列:
[[[ 0. 0.]
[ 0. 0.]]
[[ 0. 0.]
[ 0. 0.]]]
獲取陣列的屬性:
>>> print a.ndim #陣列的維數
3
>>> print a.shape #陣列每一維的大小
(2, 2, 2)
>>> print a.size #陣列的元素數
8
>>> print a.dtype #元素型別
float64
>>> print a.itemsize #每個元素所佔的位元組數
8
陣列索引,切片,賦值
示例:
>>> print a
[[2 3 4]
[5 6 7]]
>>> print a[1,2]
7
>>> print a[1,:]
[5 6 7]
>>> print a[1,1:2]
[6]
>>> a[1,:] = [8,9,10]
>>> print a
[[ 2 3 4]
[ 8 9 10]]
使用for操作元素
… print x
…
1.0
2.0
3.0
基本的陣列運算
先構造陣列a、b:
>>> b = np.eye(2)
>>> print a
[[ 1. 1.]
[ 1. 1.]]
>>> print b
[[ 1. 0.]
[ 0. 1.]]
陣列的加減乘除:
[[False False]
[False False]]
>>> print a+b
[[ 2. 1.]
[ 1. 2.]]
>>> print a-b
[[ 0. 1.]
[ 1. 0.]]
>>> print b*2
[[ 2. 0.]
[ 0. 2.]]
>>> print (a*2)*(b*2)
[[ 4. 0.]
[ 0. 4.]]
>>> print b/(a*2)
[[ 0.5 0. ]
[ 0. 0.5]]
>>> print (a*2)**4
[[ 16. 16.]
[ 16. 16.]]
使用陣列物件自帶的方法:
4.0
>>> a.sum(axis=0) #計算每一列(二維陣列中類似於矩陣的列)的和
array([ 2., 2.])
>>> a.min()
1.0
>>> a.max()
1.0
使用numpy下的方法:
>>> np.sin(a)
array([[ 0.84147098, 0.84147098],
[ 0.84147098, 0.84147098]])
>>> np.max(a)
1.0
>>> np.floor(a)
array([[ 1., 1.],
[ 1., 1.]])
>>> np.exp(a)
array([[ 2.71828183, 2.71828183],
[ 2.71828183, 2.71828183]])
>>> np.dot(a,a) ##矩陣乘法
array([[ 2., 2.],
[ 2., 2.]])
合併陣列
使用numpy下的vstack和hstack函式:
>>> a = np.ones((2,2))
>>> b = np.eye(2)
>>> print np.vstack((a,b))
[[ 1. 1.]
[ 1. 1.]
[ 1. 0.]
[ 0. 1.]]
>>> print np.hstack((a,b))
[[ 1. 1. 1. 0.]
[ 1. 1. 0. 1.]]
看一下這兩個函式有沒有涉及到淺拷貝這種問題:
>>> c = np.hstack((a,b))
>>> print c
[[ 1. 1. 1. 0.]
[ 1. 1. 0. 1.]]
>>> a[1,1] = 5
>>> b[1,1] = 5
>>> print c
[[ 1. 1. 1. 0.]
[ 1. 1. 0. 1.]]
可以看到,a、b中元素的改變並未影響c。
深拷貝陣列
陣列物件自帶了淺拷貝和深拷貝的方法,但是一般用深拷貝多一些:
>>> b = a
>>> b is a
True
>>> c = a.copy() #深拷貝
>>> c is a
False
基本的矩陣運算
轉置:
>>> a = np.array([[1,0],[2,3]])
>>> print a
[[1 0]
[2 3]]
>>> print a.transpose()
[[1 2]
[0 3]]
跡:
4
numpy.linalg模組中有很多關於矩陣運算的方法:
>>> import numpy.linalg as nplg
特徵值、特徵向量:
>>> print nplg.eig(a)
(array([ 3., 1.]), array([[ 0. , 0.70710678],
[ 1. , -0.70710678]]))
3、矩陣
numpy也可以構造矩陣物件,這裡不做討論。
知識在於點滴積累
相關文章
- 清晰易懂的Numpy入門教程
- Numpy使用入門
- numpy入門指南
- Python人工智慧常用庫Numpy使用入門Python人工智慧
- Python Numpy基礎教程Python
- 帶你入門比Python更高效的Numpy(附程式碼)Python
- Python IDLE和Python的區別!Python入門教程Python
- Python 官方文件:入門教程Python
- Python開發的入門教程(五)-setPython
- numpy 基礎入門 - 30分鐘學會numpy
- Python 繪相簿 Matplotlib 入門教程Python
- Python教程之小白入門篇Python
- Python庫安裝教程之NumpyPython
- 【轉】Python之Numpy詳細教程Python
- NumPy從入門到放棄
- Python入門教程 | Python學習的必經階段Python
- Python開發的入門教程(六)-函式Python函式
- Python技術分享:numpy庫的安裝教程Python
- 如何理解Python中的繼承?python入門Python繼承
- Python中異常與錯誤有什麼區別?Python入門教程Python
- Python開發中TCP和UDP區別是什麼?Python入門教程PythonTCPUDP
- 2020年Python基礎教程,Python快速入門教程(非常詳細)Python
- 給零基礎小白的Python入門教程Python
- Python中Numpy及Matplotlib使用Python
- Python爬蟲入門教程導航帖Python爬蟲
- 新人求python教程,人工智慧入門Python人工智慧
- Python快速入門,附詳細影片教程Python
- Python入門教程—資料分析工具PandasPython
- NumPy之:NumPy簡介教程
- Python中for迴圈和while迴圈有什麼區別?Python入門教程PythonWhile
- Python語言如何入門?新手入門教程限時免費領Python
- Python numpy中矩陣的用法總結Python矩陣
- 【Python入門教程】SQL和Python有什麼區別?PythonSQL
- 【Python入門教程】如何選擇合適的Python培訓機構?Python
- NumPy 新手教程
- Python 從入門到爬蟲極簡教程Python爬蟲
- 推薦 7 個 Python 入門視訊教程Python
- Python 資料處理庫 pandas 入門教程Python