home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / graphics / 9318 < prev    next >
Encoding:
Text File  |  1992-08-31  |  1.6 KB  |  70 lines

  1. Newsgroups: comp.graphics
  2. Path: sparky!uunet!cs.utexas.edu!sun-barr!ames!nsisrv!spso!reddy
  3. From: reddy@spso.gsfc.nasa.gov (Jagan Reddy)
  4. Subject: gnuplot. Problem plotting data.. Help appreciated.
  5. Message-ID: <reddy.715300256@spso>
  6. Summary: gnuplot is treating values too low and not plotting.
  7. Keywords: gnuplot too low values
  8. Sender: usenet@nsisrv.gsfc.nasa.gov (Usenet)
  9. Nntp-Posting-Host: spso.gsfc.nasa.gov
  10. Organization: Goddard Space Flight Center
  11. Date: Mon, 31 Aug 1992 22:30:56 GMT
  12. Lines: 56
  13.  
  14. Hi,
  15.  
  16.     When I am trying to plot my data which looks like
  17.  
  18.    3.041000  3.720E-27
  19.    3.261900  1.240E-26
  20.    3.688000  1.720E-26
  21.    4.211400  1.520E-27
  22.    5.007400  1.430E-26
  23.    5.029000  1.620E-26
  24.    5.621000  1.210E-26
  25.    5.654700  1.190E-28
  26.    6.794000  2.460E-26
  27.    6.057000  6.170E-27
  28.    6.907700  1.240E-29
  29.    7.114567  7.770E-23
  30.    7.471000  3.170E-26
  31.    7.785000  1.900E-25
  32.    7.916000  5.120E-27
  33.  
  34. gnuplot is treating the y axis as zeros and drawing a line on the
  35. screen. 
  36. Well I thought by deviding all the y values as
  37. f(y) = y/1.0e-24 /* an arbitrary number supposedly a  median of the y values*/
  38. gnuplot complines undefined y value.
  39.  
  40. My command script  is as follows.
  41.  
  42. set terminal tek40xx 
  43. set noxzeroaxis
  44. set data style lines
  45. set logscale y
  46. set output "x.plt"
  47. pop(y) = y/1.0e-26
  48. plot   't1.dat_bak',pop(y) with errorbars
  49. plot   't1.dat_bak',pop(y)
  50. quit
  51.  
  52. %gnuplot < commands
  53.          line 7: undefined variable: y
  54.  
  55.          line 8: undefined variable: y
  56.  
  57. %
  58.  
  59. Actually the data is spectroscopy data and I need to plot (!!if possible !!)
  60. as a spectrum. 
  61.  
  62. Any ideas at the earliest of your conveniance.
  63.  
  64. Thanks in advance.
  65.  
  66. Jagan
  67.  
  68.  
  69.  
  70.