|
From: <HBB...@t-...> - 2007-10-14 11:41:26
|
nole wrote: > I am trying to make contour lines and Gnuplot does them without any error > messages, but puts them in a completely wrong part of the frame. You'll have to be more specific than that. Where does it put them, and why is that supposedly wrong? > Here is the script: > unset log # remove any log-scaling > unset label # remove any previous labels > unset dgrid3d # remove any previous binning > set xtic auto # set xtics automatically > set ytic auto # set ytics automatically > set xrange[100:800] > set yrange[100:650] > set dgrid3d 140,100 > set cntrparam levels discrete 0.095,0.11,013 > splot "bdr1-omgh2.dat" using 2:1:3 I strongly doubt that can be the actual script. This one's not doing any contouring at all --- it's missing a "set contour" command. And a '.' might have gone missing from the "set cntrparam" command. |