MathGroup Archive 2013

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

Search the Archive

Re: making a Module or Column that will print lines

  • To: mathgroup at smc.vnet.net
  • Subject: [mg129682] Re: making a Module or Column that will print lines
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Sun, 3 Feb 2013 20:24:36 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net
  • References: <20130203074603.82DEF68A3@smc.vnet.net>

Don't use Print just enter the strings (or whatever you want "printed").

macro := Module[{j},
   Column[{
     "something",
     plota,
     "something else",
     plotb}]];


Bob Hanlon


On Sun, Feb 3, 2013 at 2:46 AM, Bruce Shore <bwshore at me.com> wrote:
> I run Mathematica 7. I have some legacy notebooks,   from Mathematica 5, in which there were Modules such as
>
> macro :=Module[{j},
> Print["something"];
> plota;
> Print["something else"];
> plotb
> ];
>
> where plota and plotb were plots. Now with Mathematica 7 the semicolons prevent the plots from showing up. Show[plota]; has the same problem. The semicolons, which are needed in a Module, prevent the plotting.  I have tried using a Column or a Graphics column,
>
> macro:=Column[{
> Print["something"],
> plota,
> Print["something else"],
> plotb
> }]
>
> and this does the printing and the plotting, but all the printing comes at the beginning and all the plots come after that. I really want the printing to come in between the plots, in the order that I show them. How can I do this?
>
>
>
> ---------------------------
> Bruce Shore
> bwshore at me.com
> (925) 455 0627
> --------------------------
>
>
>
>



  • Prev by Date: Re: making a Module or Column that will print lines interspersed with plots
  • Next by Date: Re: making a Module or Column that will print lines interspersed
  • Previous by thread: Re: making a Module or Column that will print lines interspersed with plots
  • Next by thread: Re: making a Module or Column that will print lines