Re: Help me! - SphericaPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg16732] Re: [mg16651] Help me! - SphericaPlot
- From: steffenz at server2.fo.FH-Koeln.DE
- Date: Wed, 24 Mar 1999 02:23:48 -0500
- Sender: owner-wri-mathgroup at wolfram.com
> Date: Fri, 19 Mar 1999 12:54:02 -0500
> From: "nkcho" <nkcho at nuri.keti.re.kr>
> To: mathgroup at smc.vnet.net
> Organization: KETI
> Subject: [mg16732] [mg16651] Help me! - SphericaPlot
>
> I have a quetion. Help me!
>
> The SphericalPlot function of Mathematica is not operated.
>
> The commnad is as follows ;
>
> SphericalPlot[ Sin[t] Cos[p],{t,0,Pi},{p,0,2Pi}]
>
> Why don't this command operate ?
>
>
Hi !
I'm not sure if there is a function for 2D spherical plots defined
in mathematica.
But Your function is three dimensional. You have to
evaluate it with SpericalPlot3D.
Try:
Needs["Graphics`ParametricPlot3D`"];
SphericalPlot3D[ Sin[t] Cos[p],{t,0,Pi},{p,0,2Pi}]
Bye
Steffen