2,263 views
この記事は最終更新から 1834日 が経過しています。
オクターブを起動するには octave と入力します。
[user@dog-server ~]$ octave
GNU Octave, version 3.6.4
Copyright (C) 2013 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 http://www.octave.org.
Please contribute if you find this software useful.
For more information, visit http://www.octave.org/get-involved.html
Read http://www.octave.org/bugs.html to learn how to submit bug reports.
For information about changes from previous versions, type `news'.
octave:1>
これで 起動完了 です!
ちなみに私の環境では octaveはここにインストールしています。
[user@dog-server ~]$ which octave /usr/local/bin/octave [user@dog-server ~]$
octave起動後、octaveのプロンプトでコマンドを入力できます。
octave:1> 1+2+3 ans = 6 octave:2>
[Ctrl]+[D] を押下もしくは、exit と入力すると、octaveが終了してLinux Shellのプロンプトに戻ります。
octave:2> exit [user@dog-server ~]$