Re: Problem
- To: mathgroup at smc.vnet.net
- Subject: [mg43006] Re: Problem
- From: bobhanlon at aol.com (Bob Hanlon)
- Date: Fri, 8 Aug 2003 00:26:21 -0400 (EDT)
- References: <bgslvj$ndj$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Needs["Graphics`Graphics`"];
Needs["Graphics`ImplicitPlot`"];
DisplayTogether[
Table[
ImplicitPlot[c==(x-x^2)+(y-y^2),
{x, -3, 4}, PlotStyle->Hue[c/20]],
{c,-10,0,5}]];
Bob Hanlon
In article <bgslvj$ndj$1 at smc.vnet.net>, "Andrew Thomas"
<Andrew.Thomas at oft.gsi.gov.uk> wrote:
<< This is a simple one but I cannot find out how to plot the following.
c=(x-x^2)+(y-y^2) where c is a constant.
The problem is that everytime I go to plot the plot is always defined
as y=f(x,...) and so I cannot enter y^2 into the equation.
>><BR><BR>