[ |
l]単純な起動法waltz% gnuplot |
gnuplot> load "surface2.dem" |
print sin(2.0/3.0*pi) |
gnuplot> plot x,x**2,x**3 |
gnuplot> plot "sintable" |
gnuplot> plot "sincostable" using 1:3 |
gnuplot> set logscale xy |
gnuplot> plot [-pi:pi] sin(100*x) |
gnuplot> set parametric |
gnuplot> set parametric |
gnuplot> splot x**2-y**2 |
gnuplot> splot [-1:1] [-1:1] [-1:1] x**2-y**2 |
gnuplot> splot [-1:1] [-1:1] x**2-y**2 画面に表示して確認する。 |
[ |
l]印刷waltz% lp mygraph.ps |
なお、mygraph.ps の内容を画面に表示させたい場合は ghostview を使って次のようにする。
[ |
l]画面表示
waltz% ghostview mygraph.ps & |
[ |
l]myprog.gset term postscript set output "myprog.ps" splot [-1:1] [-1:1] x**2-y**2 set term x11 replot |
[ |
l]プログラムの実行gnuplot> load "myprog.g" |