MathGroup Archive 2006

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

Search the Archive

Fwd: Beginner--[Plz Help] I don't want to display a POLARPLOT but use SHOW Command

  • To: mathgroup at smc.vnet.net
  • Subject: [mg70409] Fwd: 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: Mon, 16 Oct 2006 02:33:52 -0400 (EDT)
  • References: <egn92g$1cv$1@smc.vnet.net> <452F3944.9030901@gmail.com>

[...second attempt...]

---------- Forwarded message ----------
From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
To: mathgroup at smc.vnet.net
Subject: [mg70409] Re: Beginner--[Plz Help] I don't want to display a POLARPLOT
but use SHOW Command


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 -> {"
> &#968;- "}, 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-> {"
&#968;- "}, 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-> {"
&#968;- "}]];

Regards,
Jean-Marc


  • Prev by Date: Re: For Routine to Map Routine
  • Next by Date: RE: For Routine to Map Routine
  • Previous by thread: Re: Beginner--[Plz Help] I don't want to display a POLARPLOT but use SHOW Command
  • Next by thread: How to extract numbers from list elements with text?