MathGroup Archive 2009

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

Search the Archive

Re: Online Graphic Output

  • To: mathgroup at smc.vnet.net
  • Subject: [mg97799] Re: Online Graphic Output
  • From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
  • Date: Sun, 22 Mar 2009 05:46:33 -0500 (EST)
  • References: <gq2f1m$efh$1@smc.vnet.net>

Hi,

Dynamic[ListPlot[mytable]]


and

mytable = {};
Do[
  mytable = Join[mytable, Table[Random[], {10}]];
  Pause[1], {10}]

??

Regards
   Jens

felixheiner wrote:
> Normally Mathematica uses data sets that are collected before plotting. I receive a data stream from internet and I would like to display these data points immediately. A typical application of this kind could be a online chart of changing prices. Although I am an experienced user of Mathematica 2-7 for many years, I do not know, how to program this application type. Could anybody help out ?
> 


  • Prev by Date: Re: How to remove Head from expression
  • Next by Date: Re: How to remove Head from expression
  • Previous by thread: Online Graphic Output
  • Next by thread: Re: Online Graphic Output