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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
#
# Exercise hidden3d options.
# Show use of keywords "nogrid" and "nohidden" to plot individual points
# without processing them either via dgrid3d or hidden3d.
#
set view 60,75
unset key
set hidden3d
# Raw data
set title "The Valley of the Gnu"
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black"
pause -1 "Hit return to continue"
# Splines
set title "dgrid3d splines"
set dgrid3d splines
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
# Hann function
set title "dgrid3d Hann function"
set dgrid3d hann
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
# QNorm
set title "dgrid3d 30,30 qnorm 1"
set dgrid3d 30,30 qnorm 1
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
set title "dgrid3d 30,30 qnorm 2"
set dgrid3d 30,30 qnorm 2
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
set title "dgrid3d 30,30 qnorm 3"
set dgrid3d 30,30 qnorm 3
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
set title "dgrid3d 30,30 qnorm 4"
set dgrid3d 30,30 qnorm 4
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
set title "dgrid3d 30,30 qnorm 5"
set dgrid3d 30,30 qnorm 5
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
# Gauss
set title "dgrid3d 30,30 gauss 1"
set dgrid3d 30,30 gauss 1
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
set title "dgrid3d 30,30 gauss .75"
set dgrid3d 30,30 gauss .75
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
set title "dgrid3d 30,30 gauss .5"
set dgrid3d 30,30 gauss .5
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
set title "dgrid3d 30,30 gauss .35"
set dgrid3d 30,30 gauss .35
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
set title "dgrid3d 30,30 gauss .25"
set dgrid3d 30,30 gauss .25
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
set title "dgrid3d 30,30 gauss .5,.35"
set dgrid3d 30,30 gauss 0.5,0.35
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
set title "dgrid3d 30,30 gauss .35,.5"
set dgrid3d 30,30 gauss 0.35,0.5
splot "gnu-valley" u 1:2:3 w lines, "" u 1:2:3 w points pt 7 lc "black" nogrid nohidden
pause -1 "Hit return to continue"
reset
|