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

Annotation of OpenXM_contrib/gnuplot/demo/scatter.dem, Revision 1.1.1.1

1.1       maekawa     1: #
                      2: # Simple demo to scatter data conversion to grid data.
                      3: #
                      4:
                      5: set title "Simple demo to scatter data conversion to grid data"
                      6: set nohidden3d
                      7: set ticslevel 0.5
                      8: set view 60,30
                      9: set autoscale
                     10: set parametric
                     11: set data style points
                     12: set xlabel "data style point - no dgrid"
                     13: splot "hemisphr.dat"
                     14: pause -1 "Hit return to continue (1)"
                     15:
                     16: set dgrid3d 10,10,1
                     17: set xlabel " data style lines, dgrid3d 10,10,1"
                     18: set data style lines
                     19: splot "hemisphr.dat"
                     20: pause -1 "Hit return to continue (2)"
                     21:
                     22: set dgrid3d ,,4
                     23: set xlabel " data style lines, dgrid3d ,,4 "
                     24: set data style lines
                     25: splot "hemisphr.dat"
                     26: pause -1 "Hit return to continue (3)"
                     27:
                     28: set dgrid3d ,,16
                     29: set xlabel " data style lines, dgrid3d ,,16"
                     30: set data style lines
                     31: splot "hemisphr.dat"
                     32: pause -1 "Hit return to continue (4)"
                     33:
                     34: set contour
                     35: set xlabel "data style lines, dgrid3d ,,16, contour"
                     36: splot "hemisphr.dat"
                     37: pause -1 "Hit return to continue (5)"
                     38:
                     39: set nodgrid3d
                     40: set data style points
                     41: set xlabel "data style points, nodgrid3d"
                     42: splot "scatter2.dat"
                     43: pause -1 "Hit return to continue (6)"
                     44:
                     45: set dgrid3d ,,1
                     46: set xlabel "data style lines, dgrid3d ,,1"
                     47: set data style lines
                     48: splot "scatter2.dat"
                     49: pause -1 "Hit return to continue (7)"
                     50:
                     51: set dgrid3d ,,4
                     52: set xlabel "data style lines, dgrid3d ,,4"
                     53: set data style lines
                     54: splot "scatter2.dat"
                     55: pause -1 "Hit return to continue (8)"
                     56:
                     57: set noparametric
                     58: set nodgrid3d
                     59: set nocontour
                     60: set title ""
                     61: set xlabel ""

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>