Re: Plot[], Show[] and ; in Version 6
- To: mathgroup at smc.vnet.net
- Subject: [mg76478] Re: Plot[], Show[] and ; in Version 6
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Wed, 23 May 2007 05:10:10 -0400 (EDT)
- Organization: The Open University, Milton Keynes, UK
- References: <f2u4am$jnp$1@smc.vnet.net>
yasdfer at yahoo.com wrote:
> Since version 6.0 suppresses Plot/Show outputs with ; (semicolon), how
> do you plot and then do additional numerical (or graphical) outputs? I
> have a lot of existing notebooks that follow such pattern and I am
> hoping that there are some quick fixes.
>
> For example, the following would work in older version and not in 6:
>
> Block[{x=1,y=2},
> Plot[x,{x,0,1}];
> Print[Sqrt[y]];
> Plot[x^2,{x,0,1}]
> ]
>
> Thanks,
>
> -Victor
Hi Victor,
Aligning graphics in a vertical fashion can be achieved in version 6
with GraphicsColunn [1] (and similarly with GraphicsRow for a horizontal
layout).
Block[{x = 1, y = 2}, GraphicsColumn[{Plot[x, {x, 0, 1}], Sqrt[y],
Plot[x^2, {x, 0, 1}]}]]
Cheers,
Jean-Marc
[1] http://reference.wolfram.com/mathematica/ref/GraphicsColumn.html