gnuplot


コマンド

terminal(出力先。ファイルも可)の変更

set terminal 出力先

出力先はX11、wxt、postscriptなど。ファイルを出力する場合はこの後

set output "ファイル名"

してから、プロット。
epsでカラーにするには

set terminal eps enhanced color

複数のグラフを表示する

set terminal X11 n

X11のところは、好きなターミナルに(wxtとか)。nにウィンドウのIDを指定するようだ。 0, 1, …とやっていけば、複数のウィンドウに表示できる。

3次元プロット

splot "filename" (using 1:2:3)

set コマンド一覧

ここを見よう http://t16web.lanl.gov/Kawano/gnuplot/set.html


参考URL

gnuplot tips http://t16web.lanl.gov/Kawano/gnuplot/index.html