LoginSignup
0
1

More than 3 years have passed since last update.

gnuplot2次元コンター図

Posted at

gnuplotで2次元コンター図を描く方法

コンター図ならpm3dを用いればよい.とくに2次元図ならset pm3 mapを打つ.

set pm3d
set pm3d map
set ticslevel 0
set cbrange[0:100]
set palette define (0 "blue", 50 "white", 100 "red")
#set palette rgbformulae 22, 13, -31
#set palette define (20 "white", 100 "red")
set grid
set xtics  0.01
set ytics  0.01
set size ratio 1.0
set key left below

set cblabel "Temp [℃]"
set xlabel "x [M]"
set ylabel "y [M]"
#splot "result/result.txt" with pm3d ti " "
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1