Re: PolarPlot problem
- To: mathgroup at smc.vnet.net
- Subject: [mg37871] Re: PolarPlot problem
- From: adam.smith at hillsdale.edu (Adam Smith)
- Date: Fri, 15 Nov 2002 01:36:53 -0500 (EST)
- References: <ar00od$b70$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
I wonder if the problem is that you are trying to execute both in the
same cell. I had problems when I tried it with both in the same cell.
I got some error message about "PolarPlot appears in multiple context
...."
However by restarting the Kernel (or doing a Remove["Global`*"]) and
executing the:
<< Graphics`Graphics`
in a separate cell. Then executing:
PolarPlot[Sin[t], {t, 0, 2Pi}]
Everything was fine.
Adam Smith
"Steven Hodgen" <shodgen at mindspring.com> wrote in message news:<ar00od$b70$1 at smc.vnet.net>...
> Hello,
>
> I'm trying to use PolarPlot, but I can't get it to work.
>
> Here's my notebook:
> <<Graphics`Graphics`
> PolarPlot[Sin[t], {t, 0, 2Pi}]
>
> Instead of presenting the plot, it simply restates the PolarPlot statement,
> albeit in output form, so it's not bold. What am I doing wrong? All the
> other plots I've tried work fine.
>
> --Steven