Next:
4 数値データをプロットしよう
Up:
3 関数のグラフを描こう
Previous:
3.1 1変数関数のグラフ
3
.
2
2変数関数のグラフ
splot xとyの式
とすると、
変数関数のグラフが描ける。
set hidden3d
とすると、いわゆる隠線消去を行なう。 また
set contour
とすると、等高線を描く
3
。
gnuplot>
splot x**2-y**2
gnuplot>
set hidden3d
← 隠線消去を指定
gnuplot>
set contour
← 等高線描画を指定
gnuplot>
set isosamples 40,40
← メッシュを細かく
gnuplot>
replot
← 再描画
gnuplot>
set nohidden3d
← 隠線消去指定を外す
gnuplot>
set nocontour
← 等高線描画指定を外す
図 2:
のグラフ (素朴 vs 隠線消去&等高線)
桂田 祐史