Re: Plotting a circle...
- To: mathgroup at smc.vnet.net
- Subject: [mg37714] Re: [mg37678] Plotting a circle...
- From: "German BUITRAGO A." <gerbual at col2.telecom.com.co>
- Date: Sat, 9 Nov 2002 00:29:58 -0500 (EST)
- References: <200211080715.CAA07383@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Dan,
To obtain the graph you have several alternatives. Two of them are:
1) Use parametric equations and the Mathematica function ParametricPlot:
ParametricPlot[{Cos[t], Sin[t]}, {t, 0, 2*Pi}, AspectRatio -> Automatic];
2) Load the standard add-on package Graphics`ImplicitPlot ` and use the
function ImplicitPlot:
<<Graphics`ImplicitPlot`
ImplicitPlot[x^2 + y^2 == 1, {x, -1, 1}];
Best regards,
German Buitrago
----- Original Message -----
From: "Daniel Stone" <daniel.stone at cheerful.com>
To: mathgroup at smc.vnet.net
Subject: [mg37714] [mg37678] Plotting a circle...
> Hi,
>
> I want to plot the function x^2 + (y-1)^2 == 1
>
> How do I do this.
>
> Thanks in advance.
>
> Dan
>
>
- References:
- Plotting a circle...
- From: daniel.stone@cheerful.com (Daniel Stone)
- Plotting a circle...