Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #3448
| Newsgroups | comp.graphics.apps.gnuplot |
|---|---|
| Date | 2016-11-11 13:11 -0800 |
| Message-ID | <ccf98b2f-3f61-4eeb-9552-b2d97993c315@googlegroups.com> (permalink) |
| Subject | contour in gnuplot |
| From | mohammed mouhcine <mohammed.mouhcine1@gmail.com> |
my script:::
# Set terminal and output
set terminal postscript enhanced color
set output 'plot.ps'
# Set various features of the plot
set pm3d
unset surface # don't need surfaces
set view map
set contour
set key outside
set cntrparam cubicspline # smooth out the lines
set cntrparam levels 50 # sets the num of contour lines
set pm3d interpolate 20,20 # interpolate the color
# Set a nice color palette
set palette model RGB defined ( 0"black", 1"blue",
2"cyan",3"green",4"yellow",\
5"red",8"purple" )
# Axes
set xlabel 'X'
set ylabel 'Y'
set format x '%.1f'
set format y '%.1f'
set format z '%.2f'
set size square
# Now plot
splot 'data.dat' using 1:2:3 notitle with lines lt 1
data file :::
0.00000 0.00000 0.00000
0.10000 0.00000 0.00000
0.20000 0.00000 0.00000
0.30000 0.00000 0.00000
0.40000 0.00000 0.00000
0.50000 0.00000 0.00000
0.60000 0.00000 0.00000
0.70000 0.00000 0.00000
0.80000 0.00000 0.00000
0.90000 0.00000 0.00000
1.00000 0.00000 0.00000
0.00000 0.10000 0.00000
0.10000 0.10000 0.00869
0.20000 0.10000 0.01654
0.30000 0.10000 0.02276
0.40000 0.10000 0.02676
0.50000 0.10000 0.02813
0.60000 0.10000 0.02676
0.70000 0.10000 0.02276
0.80000 0.10000 0.01654
0.90000 0.10000 0.00869
1.00000 0.10000 0.00000
in complation : erreur after compulation:::
"d.gnu", line 14: undefined variable: quot
Back to comp.graphics.apps.gnuplot | Previous | Next — Next in thread | Find similar
contour in gnuplot mohammed mouhcine <mohammed.mouhcine1@gmail.com> - 2016-11-11 13:11 -0800
Re: contour in gnuplot Karl Ratzsch <mail.kfr@gmx.net> - 2016-11-12 08:47 +0100
Re: contour in gnuplot mohammed mouhcine <mohammed.mouhcine1@gmail.com> - 2016-11-12 14:27 -0800
csiph-web