MathGroup Archive 2014

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

Search the Archive

missing in Manipulate

  • To: mathgroup at smc.vnet.net
  • Subject: [mg132641] missing in Manipulate
  • From: Narasimham <mathma18 at gmail.com>
  • Date: Sun, 27 Apr 2014 02:07:28 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-outx@smc.vnet.net
  • Delivered-to: mathgroup-newsendx@smc.vnet.net

Clear[F,f,g,u,v,w]
f[u_,v_,w_]=Cos[w]Cos[u]Cos[v]-Sin[w]Sin[u]Sin[v];
g[u_,v_,w_]=Cos[w]Cos[u]Sin[v]+Sin[w]Sin[u]Cos[v] ;
F[u_,v_,w_]={Cos[w]Cos[u]Cos[v]-Sin[w]Sin[u]Sin[v],Cos[w]Cos[u]Sin[v]+Sin[w]Sin[u]Cos[v]} ;
ParametricPlot[{f[2,v,w],g[2,v,w]},{v,0,2 Pi},{w,0,Pi},PlotRange->All]
Manipulate[ParametricPlot[F[2,v,w],{v,0,2 Pi},PlotRange->All],{w,0,Pi,Pi/12}]

In function definition two function arguments f,g are combined in a list of F.

When one variable is frozen, the Manipulate works to produce circles only, while it should be displaying ellipses.What do I miss here?

Regards
Narasimham



  • Prev by Date: Function parameterization guess
  • Next by Date: Better way to test the number of arguments?
  • Previous by thread: Re: Function parameterization guess
  • Next by thread: Re: missing in Manipulate