home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / Gnuplot / Samples / Simple2D_5.gnuplot < prev    next >
Encoding:
Text File  |  1993-03-17  |  1.1 KB  |  60 lines

  1. set terminal nextfe 
  2. set output '/dev/null'
  3. set noclip points
  4. set clip one
  5. set noclip two
  6. set noborder
  7. set boxwidth
  8. set dummy x,y
  9. set format x "%g"
  10. set format y "%g"
  11. set format z "%g"
  12. set nogrid
  13. set nokey
  14. set nolabel
  15. set noarrow
  16. set nologscale
  17. set offsets 0, 0, 0, 0
  18. set nopolar
  19. set angles radians
  20. set noparametric
  21. set view 60, 30, 1, 1
  22. set samples 70, 100
  23. set isosamples 10, 10
  24. set surface
  25. set contour base
  26. set clabel
  27. set nohidden3d
  28. set cntrparam order 4
  29. set cntrparam linear
  30. set cntrparam levels auto 5
  31. set cntrparam points 5
  32. set size 1,1
  33. set data style points
  34. set function style lines
  35. set noxzeroaxis
  36. set noyzeroaxis
  37. set tics out
  38. set ticslevel 0.5
  39. set xtics ("White" 6, "Light Gray" 4, "Dark Gray" 2, "Black" 0)
  40. set ytics ("High" 3.3, "Medium" 1.65, "Low" 0)
  41. set ztics
  42. set title "Distribution of Grayscales" 0,0
  43. set notime
  44. set rrange [0 : 10]
  45. set trange [-5 : 5]
  46. set urange [-5 : 5]
  47. set vrange [-5 : 5]
  48. set xlabel "Color" 0,0
  49. set xrange [0 : 6]
  50. set ylabel "Surface Area" 0,0
  51. set yrange [0 : 3.320585]
  52. set zlabel "" 0,0
  53. set zrange [-10 : 10]
  54. set autoscale r
  55. set autoscale t
  56. set autoscale  y
  57. set autoscale z
  58. set zero 1e-08
  59. plot sin(x) + .1*x**2 with boxes
  60.