Octave - shinkwhek/misc GitHub Wiki
*nix想定
ファイル形式や実行方法
hoge.m
ファイルを用意(プログラムファイル)$ octave
(でREPLを起動)> source hoge.m
(でhoge.mをロードし実行)
plot
x,y の対応があるとき
(例)
x = -pi:0.1:pi;
y = sin(x);
grid "on"; // grid表示
plot(x,y); // プロットのトリガー
xlavel("xlabel"); // x軸のラベル
ylabel("ylabel"); // y軸のラベル
関数定義
function f(x)
// fugafuga
endfunction