MathGroup Archive 2006

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

Search the Archive

Re: Plotting an equation

  • To: mathgroup at smc.vnet.net
  • Subject: [mg63546] Re: [mg63534] Plotting an equation
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Thu, 5 Jan 2006 03:12:15 -0500 (EST)
  • Reply-to: hanlonr at cox.net
  • Sender: owner-wri-mathgroup at wolfram.com

eqn=x^2 *y+(y+x)^3==0;

Off[Plot::plnr];
Plot[Evaluate[y/.Solve[eqn,y]],{x,-1,1},
    PlotRange->All];

Needs["Graphics`ImplicitPlot`"];

ImplicitPlot[eqn,{x,-1,1},
    AspectRatio->1/GoldenRatio];


Bob Hanlon

> 
> From: "Fernando" <frr at easyjob.net>
To: mathgroup at smc.vnet.net
> Date: 2006/01/04 Wed AM 03:17:11 EST
> Subject: [mg63546] [mg63534] Plotting an equation
> 
> 
> Hi,
> 
> How can you plot a surface determined by an equation, such as:
> 
> x^2 y + (y + x)^3 = 0
> 
> Thanks
> 
> 


  • Prev by Date: Re: Inplicit differentiation
  • Next by Date: Re: Re: Re: Questions regarding MatrixExp, and its usage
  • Previous by thread: Re: Plotting an equation
  • Next by thread: Inplicit differentiation