MathGroup Archive 2004

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

Search the Archive

Re: Needed Grid lines in Implicit Plot

  • To: mathgroup at smc.vnet.net
  • Subject: [mg52676] Re: [mg52648] Needed Grid lines in Implicit Plot
  • From: Andrzej Kozlowski <akoz at mimuw.edu.pl>
  • Date: Tue, 7 Dec 2004 05:48:35 -0500 (EST)
  • References: <200412070909.EAA09155@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

On 7 Dec 2004, at 18:09, Narasimham wrote:

>
> << Graphics`ImplicitPlot`
> ImplicitPlot[3 x + 5 y == 1, {x, -4 , 4}, {y, -4 , 4 },
> GridLines ->{Range[-4, 4, 1], Range[-4, 4, 1]},AspectRatio ->
> Automatic];
>
>

<< "Graphics`ImplicitPlot`"


g = Graphics[ImplicitPlot[3*x + 5*y == 1, {x, -4, 4},
      {y, -4, 4}, AspectRatio -> Automatic,
      DisplayFunction -> Identity]];


Show[g, DisplayFunction -> $DisplayFunction,
   GridLines -> {Range[-4, 4, 1], Range[-4, 4, 1]},
   PlotRange -> {{-4, 4}, {-4, 4}}]



Andrzej Kozlowski
Chiba, Japan
http://www.akikoz.net/~andrzej/
http://www.mimuw.edu.pl/~akoz/


  • Prev by Date: Re: Needed Grid lines in Implicit Plot
  • Next by Date: Re: Re: Re: Finding the Fourier transform of discrete functions
  • Previous by thread: Needed Grid lines in Implicit Plot
  • Next by thread: Re: Needed Grid lines in Implicit Plot