MathGroup Archive 2005

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: GridLines and ImplicitPlot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg56637] Re: [mg56620] GridLines and ImplicitPlot
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Sun, 1 May 2005 00:46:35 -0400 (EDT)
  • Reply-to: hanlonr at cox.net
  • Sender: owner-wri-mathgroup at wolfram.com

$Version

5.1 for Mac OS X (January 27, 2005)

Needs["Graphics`"];

This works fine on my macine

ImplicitPlot[x^2+2 y^2==3,{x,-2,2},
    GridLines->Automatic];

If your version doesn't support Gridlines as an option to Plot, you could try

Show[
    ImplicitPlot[x^2+2 y^2==3,{x,-2,2},
      DisplayFunction->Identity],
    GridLines->Automatic,
    DisplayFunction->$DisplayFunction];

or

DisplayTogether[
    ImplicitPlot[x^2+2 y^2==3,{x,-2,2}],
    GridLines->Automatic];


Bob Hanlon

> 
> From: "Steven Jonak" <JonakSt at gw.kirkwood.k12.mo.us>
To: mathgroup at smc.vnet.net
> Date: 2005/04/30 Sat AM 01:27:49 EDT
> Subject: [mg56637] [mg56620] GridLines and ImplicitPlot
> 
> I can't seem to be able to use the GridLines->Automatic command with
> ImplicitPlot.  The help browser says that ImplicitPlot accepts all the
> usual Plot options.  Any ideas?
> 
> S Jonak
> "Maintain an even strain."
> 
> 


  • Prev by Date: Re: GridLines and ImplicitPlot
  • Next by Date: Re: Re: Slow performance on OS X?
  • Previous by thread: Re: GridLines and ImplicitPlot
  • Next by thread: Re: Re: GridLines and ImplicitPlot