Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.graphics.apps.gnuplot > #3448 > unrolled thread
| Started by | mohammed mouhcine <mohammed.mouhcine1@gmail.com> |
|---|---|
| First post | 2016-11-11 13:11 -0800 |
| Last post | 2016-11-12 14:27 -0800 |
| Articles | 3 — 2 participants |
Back to article view | Back to comp.graphics.apps.gnuplot
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
| From | mohammed mouhcine <mohammed.mouhcine1@gmail.com> |
|---|---|
| Date | 2016-11-11 13:11 -0800 |
| Subject | contour in gnuplot |
| Message-ID | <ccf98b2f-3f61-4eeb-9552-b2d97993c315@googlegroups.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
[toc] | [next] | [standalone]
| From | Karl Ratzsch <mail.kfr@gmx.net> |
|---|---|
| Date | 2016-11-12 08:47 +0100 |
| Message-ID | <o06hdr$qf5$1@solani.org> |
| In reply to | #3448 |
Am 11.11.2016 um 22:11 schrieb mohammed mouhcine: > # Set a nice color palette > set palette model RGB defined ( 0"black", 1"blue", > 2"cyan",3"green",4"yellow",\ > 5"red",8"purple" ) > > in complation : erreur after compulation::: > "d.gnu", line 14: undefined variable: quot > I'm sure it'll work after you clean up that "set palette" command.
[toc] | [prev] | [next] | [standalone]
| From | mohammed mouhcine <mohammed.mouhcine1@gmail.com> |
|---|---|
| Date | 2016-11-12 14:27 -0800 |
| Message-ID | <650080f6-5b67-48ee-8d2b-2c473d8d9f29@googlegroups.com> |
| In reply to | #3449 |
Le samedi 12 novembre 2016 07:47:09 UTC, Karl Ratzsch a écrit : > Am 11.11.2016 um 22:11 schrieb mohammed mouhcine: > > > # Set a nice color palette > > set palette model RGB defined ( 0"black", 1"blue", > > 2"cyan",3"green",4"yellow",\ > > 5"red",8"purple" ) > > > > > in complation : erreur after compulation::: > > "d.gnu", line 14: undefined variable: quot > > > > I'm sure it'll work after you clean up that "set palette" command. thanks
[toc] | [prev] | [standalone]
Back to top | Article view | comp.graphics.apps.gnuplot
csiph-web