Re: Beginner--[Plz Help] I don't want to display a POLARPLOT but use SHOW Command
- To: mathgroup at smc.vnet.net
- Subject: [mg70365] Re: Beginner--[Plz Help] I don't want to display a POLARPLOT but use SHOW Command
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Sat, 14 Oct 2006 03:07:13 -0400 (EDT)
- Organization: The Open University, Milton Keynes, UK
- References: <egn92g$1cv$1@smc.vnet.net>
abdou.oumaima at hotmail.com wrote:
> Greeting,
>
> << Graphics`Graphics`;
> pp = PolarPlot[Cos[t] , {t, - Pi/2, Pi/2}, PlotStyle -> Hue[0.4]];
> pm = PolarPlot[Sin[t] /. ksi -> a, {t, -
> Pi/2, Pi/2}, PlotStyle -> Hue[0.6], PlotLabel -> {"
> ψ- "}, PlotRange -> All];
> Show[pp, pm];
> .
>
> I want to show one graphic. I don't want to display pp and pm.
>
> What to do please?!.
>
> Cheers.
> Lian.
>
> Link to the forum page for this post:
> http://www.mathematica-users.org/webMathematica/wiki/wiki.jsp?pageName=Special:Forum_ViewTopic&pid=14358#p14358
> Posted through http://www.mathematica-users.org [[postId=14358]]
>
>
Hi Lian,
You can use either one of the following methods:
<<Graphics`Graphics`;
pp= PolarPlot[ Cos[t], { t, -Pi/2, Pi/2}, PlotStyle-> Hue[0.4],
DisplayFunction->Identity];
pm= PolarPlot[ Sin[t]/. ksi->a, { t, -Pi/2, Pi/2}, PlotStyle->
Hue[0.6], PlotLabel-> {"
ψ- "}, PlotRange->All, DisplayFunction->Identity];
Show[ pp,pm, DisplayFunction->$DisplayFunction];
or
<<Graphics`Graphics`;
DisplayTogether[\[IndentingNewLine] pp= PolarPlot[ Cos[t], { t, -Pi/2,
Pi/2}, PlotStyle-> Hue[0.4]],
pm= PolarPlot[ Sin[t]/. ksi->a, { t, -Pi/2, Pi/2}, PlotStyle->
Hue[0.6], PlotLabel-> {"
ψ- "}]];
Regards,
Jean-Marc