Re: Needed Grid lines in Implicit Plot
- To: mathgroup at smc.vnet.net
- Subject: [mg52671] Re: Needed Grid lines in Implicit Plot
- From: "Jens-Peer Kuska" <kuska at informatik.uni-leipzig.de>
- Date: Tue, 7 Dec 2004 05:48:25 -0500 (EST)
- Organization: Uni Leipzig
- References: <cp3s4f$93l$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
<< Graphics`ImplicitPlot`
plt = Graphics[
ImplicitPlot[3 x + 5 y == 1, {x, -4 , 4}, {y, -4 , 4 },
DisplayFunction -> Identity]];
Show[plt,
GridLines -> {Range[-4, 4, 1], Range[-4, 4, 1]},
DisplayFunction -> $DisplayFunction, AspectRatio ->
Automatic];
Regards
Jens
"Narasimham" <mathma18 at hotmail.com> schrieb im Newsbeitrag
news:cp3s4f$93l$1 at smc.vnet.net...
> << 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];
>