Re: To combine separate Boxes by Show
- To: mathgroup at smc.vnet.net
- Subject: [mg132627] Re: To combine separate Boxes by Show
- From: Helen Read <readhpr at gmail.com>
- Date: Wed, 23 Apr 2014 04:53:48 -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
- References: <lj4lv6$csm$1@smc.vnet.net>
Something like this?
table = Table[
ParametricPlot3D[{u + v, u - v, u v/5 + i}, {u, .2, 1}, {v, 0,
i Pi/4}], {i, 1, 3, 1}];
GraphicsGrid[{table, {Show[table, PlotRange -> All]}}]
Helen Read
University of Vermont
On 4/21/2014 10:59 PM, Narasimham wrote:
> Unlike in Maniplate where can see one instance at a time displayed, I wish to see separate Boxes at first and then next see combined Plot together by Show.
>
> Do[Print[ ParametricPlot3D[{ u + v , u - v , u v /5 + i }, {u, .2, 1}, {v, 0,i Pi/4} ]], {i, 1, 3, 1}]
> Show[%]
>
> The Show does not collect prevoius displays.
>
> How it done?
>
> TIA
> Narasimham
>