File: custom_contours.dem

package info (click to toggle)
gnuplot 5.4.1%2Bdfsg1-1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,316 kB
  • sloc: ansic: 85,877; cpp: 7,440; makefile: 2,548; javascript: 2,322; sh: 1,542; lisp: 667; perl: 304; pascal: 191; tcl: 88; python: 46
file content (41 lines) | stat: -rw-r--r-- 805 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# New options for customizing contour lines
# set cntrparam {firstlinetype N} {{un}sorted}
#
set contours
set xrange [1:7.6]
set yrange [1:7.6]
set view 67., 180., 1.42, 1.05
set key outside right top
unset xtics
unset ytics
unset ztics

# Custom contour lines starting at 101
set linetype 101 lc "black"
set linetype 102 lc "black" lw 0.5 dt '.'
set linetype 103 lc "black" lw 0.5 dt '-'
set linetype 104 lc "black" lw 0.5
set linetype 105 lc 6

set multiplot layout 2,2 spacing 0,0

set key title "default"
splot x*y lw 2

set hidden3d offset -1
set key title "hidden3d"
splot x*y lw 2

set cntrparam first 101 sort
unset hidden3d
set key title "firstline sorted"
splot x*y lw 2

set hidden3d
set key title "hidden3d firstline sorted"
splot x*y lw 2
unset multiplot

pause -1 "<cr> to continue"
reset