[BACK]Return to scatter.dem CVS log [TXT][DIR] Up to [local] / OpenXM_contrib / gnuplot / demo

File: [local] / OpenXM_contrib / gnuplot / demo / Attic / scatter.dem (download)

Revision 1.1.1.2 (vendor branch), Sat Jan 22 14:16:08 2000 UTC (24 years, 4 months ago) by maekawa
Branch: GNUPLOT
CVS Tags: maekawa-ipv6, VERSION_3_7_1, RELEASE_20000124, RELEASE_1_2_2, RELEASE_1_2_1, RELEASE_1_1_3, RELEASE_1_1_2
Changes since 1.1.1.1: +3 -5 lines

Import gnuplot 3.7.1

#
# Simple demo to scatter data conversion to grid data.
#

set title "Simple demo to scatter data conversion to grid data"
set nohidden3d
set ticslevel 0.5
set view 60,30
set autoscale
set parametric
set data style points
set xlabel "data style point - no dgrid"
set key box
splot "hemisphr.dat"
pause -1 "Hit return to continue (1)"

set dgrid3d 10,10,1
set xlabel " data style lines, dgrid3d 10,10,1"
set data style lines
splot "hemisphr.dat"
pause -1 "Hit return to continue (2)"

set dgrid3d ,,4
set xlabel " data style lines, dgrid3d ,,4 "
set data style lines
splot "hemisphr.dat"
pause -1 "Hit return to continue (3)"

set dgrid3d ,,16
set xlabel " data style lines, dgrid3d ,,16"
set data style lines
splot "hemisphr.dat"
pause -1 "Hit return to continue (4)"

set contour
set xlabel "data style lines, dgrid3d ,,16, contour"
splot "hemisphr.dat"
pause -1 "Hit return to continue (5)"

set nodgrid3d
set data style points
set xlabel "data style points, nodgrid3d"
splot "scatter2.dat"
pause -1 "Hit return to continue (6)"

set key nobox
set dgrid3d ,,1
set xlabel "data style lines, dgrid3d ,,1"
set data style lines
splot "scatter2.dat"
pause -1 "Hit return to continue (7)"

set dgrid3d ,,4
set xlabel "data style lines, dgrid3d ,,4"
set data style lines
splot "scatter2.dat"
pause -1 "Hit return to continue (8)"
reset