MathGroup Archive 2002

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

Search the Archive

RE: Plotting ellipses and other functions

  • To: mathgroup at smc.vnet.net
  • Subject: [mg37038] RE: [mg37026] Plotting ellipses and other functions
  • From: "tgarza01 at prodigy.net.mx" <tgarza01 at prodigy.net.mx>
  • Date: Mon, 7 Oct 2002 05:24:17 -0400 (EDT)
  • Reply-to: tgarza01 at prodigy.net.mx
  • Sender: owner-wri-mathgroup at wolfram.com

You might use ImplicitPlot:

In[1]:=
<< "Graphics`ImplicitPlot`"
In[2]:=
eqn1 = (x - 2)^2 + 2*(y - 3)^2 == 
    6; 
In[3]:=
ImplicitPlot[eqn1, {x, -2, 6}]; 
In[4]:=
eqn2 = x^3*y + y^3 == 9; 
In[5]:=
ImplicitPlot[eqn2, {x, -8, 8}]; 

Tomas Garza
Mexico City

Original Message:
-----------------
From: David davidol at hushmail.com
To: mathgroup at smc.vnet.net
Subject: [mg37038] [mg37026] Plotting ellipses and other functions


How can I plot functions like:

(x-2)^2 + 2(y-3)^2 = 6

and

x^3y + y^3 = 9

using Mathematica?





--------------------------------------------------------------------
mail2web - Check your email from the web at
http://mail2web.com/ .




  • Prev by Date: Re: factoring quartic over radicals
  • Next by Date: RE: Solve a(over)b in mathematica?
  • Previous by thread: Re: Plotting ellipses and other functions
  • Next by thread: Re: Plotting ellipses and other functions