« gnuplot(3) | メイン | gnuplot(5) »
3次元のグラフ表示について。今までは plot コマンドを使ってきましたが、ここでは splot を使います。
sin_cos.plt
# sin(x)*cos(y) set xrange [-3:3]; set yrange [-3:3]; set zrange [-2:2] set xlabel "x"; set ylabel "y"; set zlabel "z" splot sin(x)*cos(y)
ここでは軸のラベルもつけています。ラベルをつけるには xlabel, ylabel, zlabel コマンドを使います。
投稿者 napier : 2005年05月26日 00:32
このエントリーのトラックバックURL: http://will.squares.net/mt/mt-modified-tb.cgi/184