home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / graphics / gnuplot / 369 < prev    next >
Encoding:
Text File  |  1992-11-14  |  1.4 KB  |  37 lines

  1. Newsgroups: comp.graphics.gnuplot
  2. Path: sparky!uunet!destroyer!fmsrl7!lynx!triton.unm.edu!jdaves
  3. From: jdaves@triton.unm.edu (Jonathan Daves-Brody)
  4. Subject: Re: Contour Control
  5. Message-ID: <0lfq60q@lynx.unm.edu>
  6. Date: Fri, 13 Nov 92 16:55:53 GMT
  7. Organization: University of New Mexico, Albuquerque
  8. References: <9211120707.AA15017@elrond.physics.mcgill.ca> <1992Nov12.180723.5456@leland.Stanford.EDU> <1992Nov12.183810.10682@leland.Stanford.EDU>
  9. Lines: 26
  10.  
  11. In article <1992Nov12.183810.10682@leland.Stanford.EDU> wolf@leland.Stanford.EDU (Andy Wolfsberg) writes:
  12. >
  13. >ONe more question while were at it.
  14. >I finally figured out how to contour and surface mesh
  15. >2-d data. You have to put a blank line after each row
  16. >of data (which are specified one point per line in a long column)
  17. >
  18. >However, you can not specify the x,y locations (i,e, parametric)
  19. >you must set noparmetric and list only the z values
  20. >
  21. >The problem: I have data from a 40x40 grid which represents
  22. >an 80x80 domain (deltaX = 2). When I contour it up, I want the
  23. >axis to go from 0 to 80 but they only go from 0 to 40.
  24. >
  25. >Does anyone know of a way to rename the axis of a noparametric
  26. >contour plot.  I.E. keep the plot the same, just rewrite the
  27. >axis lables?
  28.  
  29. If I understand your question, the syntax is:
  30.     set xtics ("0" 0, "40" 20, "80" 40)
  31.  
  32. I.e., the label that you >want< to use goes in quotes right before the
  33. label that is >currently< being used on the axis.
  34.  
  35. Hope that helps. . .
  36.  
  37.