home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / sci / math / symbolic / 2060 < prev    next >
Encoding:
Text File  |  1992-07-23  |  1.6 KB  |  49 lines

  1. Newsgroups: sci.math.symbolic
  2. Path: sparky!uunet!darwin.sura.net!wupost!sdd.hp.com!caen!batcomputer!cornell!uw-beaver!news.u.washington.edu!news
  3. From: storti@beach.me.washington.edu (Duane Storti)
  4. Subject: Re: Dashed Lines in Graphics Question
  5. Message-ID: <1992Jul23.214844.4055@u.washington.edu>
  6. Sender: news@u.washington.edu (USENET News System)
  7. Organization: University of Washington
  8. References: <whitmore.711781052@pv343f.vincent.iastate.edu>
  9. Date: Thu, 23 Jul 1992 21:48:44 GMT
  10. Lines: 37
  11.  
  12. In article <whitmore.711781052@pv343f.vincent.iastate.edu> whitmore@iastate.edu  
  13. (Kurt D Whitmore) writes:
  14. > In <1992Jul22.004307.15466@EE.Stanford.EDU> siegman@EE.Stanford.EDU (Anthony  
  15. E. Siegman) writes:
  16. > >I'm doing things like:
  17. > >   g1 = Plot[ f1[x], {x,a1,b1}, DisplayFunction->Identity];
  18. > >   g2 = Plot[ f2[x], {x,a2,b2}, DisplayFunction->Identity];
  19. > >   g3 = Plot[ f3[x], {x,a3,b3}, DisplayFunction->Identity];
  20. > >   Show[ g1, g2, g3, DisplayFunction->$DisplayFunction]
  21. > >to put several curves on a single plot.  What can I put in the g2
  22. > >statement, say, to get a distinctive dashing for just that one curve?
  23. > >Everything I've tried seems to turn on dashing for all the other
  24. > >curves as well.
  25. > I have a similar question on Queue at support@wri.com, but I haven't heard
  26. > from anyone since I sent it on July 14th.
  27. > Kurt D. Whitmore
  28. > whitmore@iastate.edu
  29.  
  30. Try adding a PlotStyle specification to the definition of g2
  31. For example:
  32.  
  33.     g2 = Plot[ f[2], {x,a3,b3}, PlotStyle -> Dashing[{.03}],
  34.         DisplayFunction->Identity]
  35.  
  36. That did the trick under Mma 2.0 on my NeXT Cube.
  37.  
  38. Duane Storti
  39. storti@u.washington.edu
  40.