Re: visualization with Mathematica
- To: mathgroup at smc.vnet.net
- Subject: [mg37970] Re: visualization with Mathematica
- From: "Allan Hayes" <hay at haystack.demon.co.uk>
- Date: Sat, 23 Nov 2002 19:14:39 -0500 (EST)
- References: <arksj2$5fd$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
> I Type this Table[Plot3D[Sin[2x]Sin[2y]Cos[t], {x, 0, Pi}, {y, 0, Pi}],
> PlotRange -> {-1, 1}, BoxRatios -> {1, 1, 1}, {t, 0, Pi, Pi/6}]
>Why didn´t work?
The options must be in the Plot3D[.....] -- so probably a typo:
Here is the corrected version.
Table[
Plot3D[
Sin[2x]Sin[2y]Cos[t], {x, 0, Pi}, {y, 0, Pi},
PlotRange -> {-1, 1}, BoxRatios -> {1, 1, 1}
],
{t, 0, Pi, Pi/6}
]
--
Allan
---------------------
Allan Hayes
Mathematica Training and Consulting
Leicester UK
www.haystack.demon.co.uk
hay at haystack.demon.co.uk
Voice: +44 (0)116 271 4198
Fax: +44 (0)870 164 0565
"Paulo Moraes Ferreira" <paulom at compos.com.br> wrote in message
news:arksj2$5fd$1 at smc.vnet.net...
> I Type this Table[Plot3D[Sin[2x]Sin[2y]Cos[t], {x, 0, Pi}, {y, 0, Pi}],
> PlotRange -> {-1, 1}, BoxRatios -> {1, 1, 1}, {t, 0, Pi, Pi/6}]
>
> from the "visualization with Mathematica" Wolfram's Book. Why didn´t work?
>
> _________________________________________
> Paulo Ferreira
> ICQ#: 132191789
> More ways to contact me: http://wwp.icq.com/132191789
> _________________________________________
>
>