Octave 數值計算
環境: Ubuntu 12.04 , Octave 3.8.2
Octave是一個旨在提供與相容的及的工具,它支援向量和矩陣計算,方便寫數學表示式。
安裝步驟如下:
wget ftp://ftp.gnu.org/gnu/octave/octave-3.8.2.tar.gz
tar xvf octave-3.8.2.tar.gz
cd octave-3.8.2
./configure
make
sudo make install
進入命令列:
jerry@hq:~$ octave
warning: docstring file '/usr/local/share/octave/3.8.2/etc/built-in-docstrings' not found
No protocol specified
GNU Octave, version 3.8.2
Copyright (C) 2014 John W. Eaton and others.
This is free software; see the source code for copying conditions.
There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. For details, type 'warranty'.
Octave was configured for "x86_64-unknown-linux-gnu".
Additional information about Octave is available at
Please contribute if you find this software useful.
For more information, visit
Read to learn how to submit bug reports.
For information about changes from previous versions, type 'news'.
octave:1>
octave:28> version
ans = 3.8.2
octave:29> pi
ans = 3.1416
octave:30> A
A =
1 2
3 4
octave:31>
Octave是一個旨在提供與相容的及的工具,它支援向量和矩陣計算,方便寫數學表示式。
安裝步驟如下:
wget ftp://ftp.gnu.org/gnu/octave/octave-3.8.2.tar.gz
tar xvf octave-3.8.2.tar.gz
cd octave-3.8.2
./configure
make
sudo make install
進入命令列:
jerry@hq:~$ octave
warning: docstring file '/usr/local/share/octave/3.8.2/etc/built-in-docstrings' not found
No protocol specified
GNU Octave, version 3.8.2
Copyright (C) 2014 John W. Eaton and others.
This is free software; see the source code for copying conditions.
There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. For details, type 'warranty'.
Octave was configured for "x86_64-unknown-linux-gnu".
Additional information about Octave is available at
Please contribute if you find this software useful.
For more information, visit
Read to learn how to submit bug reports.
For information about changes from previous versions, type 'news'.
octave:1>
octave:28> version
ans = 3.8.2
octave:29> pi
ans = 3.1416
octave:30> A
A =
1 2
3 4
octave:31>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/16582684/viewspace-1255184/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【數值計算方法】數值積分&微分
- python計算對數值Python
- 【數值計算方法】常微分方程數值解-數值實驗
- 計算機系統002 – 數值運算計算機
- 【數值計算方法】非線性方程求根-數值實驗
- 數值計算的可靠性(二)
- 數值計算的可靠性(三)
- 數值計算的可靠性(一)
- Shell程式設計-04-Shell中變數數值計算程式設計變數
- 【數值計算方法】線性方程組的迭代解法-數值實驗
- 平行計算π值
- 計算機組成與體系結構-數值表示範圍-浮點數計算計算機
- 數值計算:高斯-勒朗德積分公式公式
- python 計算中位數、四分位數、最大值、最小值等Python
- Octave 使用
- python 計算 sin 值Python
- SHELL之數值運算
- 資料處理02:Python數值計算包NumPyPython
- # 數值計算:三角形積分
- 圖解計算機中的數值範圍和浮點運算圖解計算機
- Zsh 開發指南(第七篇 數值計算)
- 計算int變數中攸多少bit的值是1變數
- OpenCV計算機視覺學習(2)——影像算術運算 & 掩膜mask操作(數值計算,影像融合,邊界填充)OpenCV計算機視覺
- 如何從字串文字中拆解出多個數值並計算字串
- 數值計算:前向和反向自動微分(Python實現)Python
- 程式設計和數值計算平臺:MATLAB R2023a Mac啟用版程式設計MatlabMac
- 樹,計算父節點的值
- SPSS計算極值、平均值、中位數、方差、偏度、峰度、變異係數SPSS
- 計算機計算小數除法的陷阱計算機
- 咖啡汪日誌———數值計算,精度、舍入、溢位(極客時間)
- 計算機中數值和字串怎麼用二進位制表示?計算機字串
- 計算Linux天數Linux
- 計算素數【Java】Java
- Python學習記錄_基本統計值計算Python
- C++ 透過CryptoPP計算Hash值C++
- 【DA】z檢驗p值的計算
- MATLAB R2023a for Mac(程式設計和數值計算平臺) v9.14.0.2337262啟用版MatlabMac程式設計
- vue中使用decimal.js對前端數值型別進行高精度計算VueDecimalJS前端型別
- 【數值計算方法】線性方程組迭代演算法的Python實現演算法Python