Re: How to plot this
- To: mathgroup at smc.vnet.net
- Subject: [mg64440] Re: How to plot this
- From: "newbie" <CPPandC at gmail.com>
- Date: Fri, 17 Feb 2006 04:11:49 -0500 (EST)
- References: <dt1coe$5j$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
What you wanna do is "ImplicitPlot."
Try this:
eqn1 = x + y == 2*x*y
Needs["Graphics`ImplicitPlot`"]
ImplicitPlot[eqn1, {x, -1, 2}, PlotStyle -> Hue[1]]
you can get the figure correctly.
Best. mathlover