Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.soft-sys.math.mathematica > #16859
| From | Narasimham <mathma18@gmail.com> |
|---|---|
| Newsgroups | comp.soft-sys.math.mathematica |
| Subject | missing in Manipulate |
| Date | 2014-04-27 06:07 +0000 |
| Message-ID | <lji6rg$nsc$1@smc.vnet.net> (permalink) |
| Organization | Time-Warner Telecom |
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
Back to comp.soft-sys.math.mathematica | Previous | Next | Find similar
missing in Manipulate Narasimham <mathma18@gmail.com> - 2014-04-27 06:07 +0000
csiph-web