安裝numpy函式庫——sudo apt-get install python-numpy
以及 sudo apt-get install python-scipy
numpy函式庫的函式檢視:numpy函式
from numpy import *random.rand(4,4)
array([[ 0.00346766, 0.31435508, 0.62660357, 0.66226196],
[ 0.50846942, 0.36985927, 0.97623186, 0.16018687],
[ 0.73907921, 0.47685173, 0.53514874, 0.25197389],
[ 0.89880414, 0.07204696, 0.79321122, 0.59009984]])
numpy函式庫中存在兩種不同的資料型別(矩陣matrix和陣列array),都可以用於處理行列表示的數字元素。
使用mat()函式可以將陣列轉化為矩陣,.i操作符實現了矩陣求逆的運算。
>>> randmat = mat(random.rand(4,4))>>> randmat.i
matrix([[-2.23277822, 0.56864719, 0.72165341, 1.67388598],
[ 1.11436389, -1.14057081, -0.0595431 , 0.01907366],
[ 0.03110561, 1.15558961, -0.87337803, 0.73494119],
[ 0.84605656, 0.16058555, 1.10866379, -1.95587311]])
安裝matplotlib——sudo apt-get install python-matplotlib
ubuntu下tftp安裝和使用
這樣tftp伺服器就啟動了,下面可以做乙個測試 4.cd tftpboot touch test 建立乙個檔案 5.cd home usrname 登入另乙個目錄 6.tftp 192.168.0.59 換成自己的ip get tftpboot test 如果能夠得到檔案,那麼就成功了。ps 不要忘...
Ubuntu下安裝Kdevelop和QT4
一 ubuntu下安裝kdevelop 有兩種方式進行安裝 1.使用終端 使用apt get可以很容易的得到kdevelop,具體如下 以kde為例 1 apt get build dep gcc 2 apt get install kdevelop3 3 如果你無法獲取這些軟體包的資訊,可以嘗試修...
ubuntu下安裝GCC和G
主要解決qt編譯出錯的問題 問題為main.o125.原因缺少g 主要來自ubuntu中文社群 首選,確認你已經安裝了build essential程式包 apt get install build essential確認你已經安裝了核心標頭檔案包 uname r apt get install l...