ピヨピヨ日記 シンガポール編

シンガポール生活の日記とかいろいろ

Octave

How to solve "error: no graphics toolkits are available!" error

I faced the error below when I tried to use plot function in octave: error: no graphics toolkits are available!In my case, I was able to solve this issue by typing following command in octave: register_graphics_toolkit("gnuplot") % registe…

How to solve "set terminal aqua enhanced title" issue.

When I tried to use "plot" function in Octave, I faced the error below: set terminal aqua enhanced title ... <|| I solved the issue as below. 1. Download and installed AquaTerm from http://sourceforge.net/projects/aquaterm/ 2. Uninstalled …

Octave の練習3

引き続き行列の計算の練習次のようなマトリクスを用意。 > A = [1 2; 3 4; 5 6] A = 1 2 3 4 5 6 > B = [11 12; 13 14; 15 16] B = 11 12 13 14 15 16 > C = [1 1; 2 2] C = 1 1 2 2 マトリクスA と Cのかけ算はつぎのようになる。3x2 と 2x2 のマトリクスな…

Octave の練習2

適当にざっくり練習メモ3x2 matrix をつくる > A = [1 2; 3 4; 5 6] A = 1 2 3 4 5 6 matrix のサイズを確認 > size(A) ans = 3 2 サイズ自体もマトリクスで表現されているので、サイズのサイズを確認すると、1x2 のマトリクスであることがわかる > size(siz…

Octave の練習

Machine Learning の勉強のために Octave を使いこなす必要があるので、スーパーざっくり勉強してみる! Octave のインストール Octave のインストールの仕方はこちらpiyopiyo-singapore.hatenadiary.jp Octave の起動 Terminal で次のコマンドを打てばok oc…

Mac に Octave をインストールする

brew tap homebrew/science brew update && brew upgrade brew install octaveOctave の起動 octave詳細はこちら: http://wiki.octave.org/Octave_for_MacOS_X#Package_Managers