MathGroup Archive 2004

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

Search the Archive

Re: ListPlot output

  • To: mathgroup at smc.vnet.net
  • Subject: [mg46607] Re: ListPlot output
  • From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
  • Date: Wed, 25 Feb 2004 13:07:01 -0500 (EST)
  • Organization: Universitaet Leipzig
  • References: <c1h051$9pd$1@smc.vnet.net>
  • Reply-to: kuska at informatik.uni-leipzig.de
  • Sender: owner-wri-mathgroup at wolfram.com

Hi,

and If you use the DisplayFunction option of ListPlot[]
you see the output not.

Or (you use For[] with the false semantic)

Block[{$DisplayFunction=Identity},
For[i=0, i<MAX, i++,
         MyArrayOfGraph[[i]] = ListPlot[...]
   ]
];

Regards
  Jens

Massimo Sironi wrote:
> 
> Hi All!
> 
> I've a function like this:
> (...)
> For[i=0, i<MAX,
>         MyArrayOfGraph[[i]] = ListPlot[...];
> i++];
> Return[MyArrayOfGraph];
> 
> The function works  without problem but, when I execute it, I see the
> output of any ListPlot, there is a way for hide the output of ListPlot?
> 
> Thanks for Help.
> Massimo Sironi


  • Prev by Date: Re: Running a notebook from within another
  • Next by Date: Re: Running a notebook from within another
  • Previous by thread: Re: ListPlot output
  • Next by thread: Re: ListPlot output