MathGroup Archive 2004

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

Search the Archive

Re: Graphs of Sequences of Functions:(

  • To: mathgroup at smc.vnet.net
  • Subject: [mg46904] Re: Graphs of Sequences of Functions:(
  • From: "Bo Le" <bole79 at email.si>
  • Date: Sun, 14 Mar 2004 23:54:20 -0500 (EST)
  • References: <c31583$61s$1@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

Hi!

You can use the Table construct, either displaying the sequence of graphs overlaid or each
of the them seperately:
together=Plot[Evaluate[Table[x^n, {n, 5}]], {x, 0, 1}]
sep=Table[Plot[x^n, {x, 0, 1}], {n, 5}]

Or you can display the last sequence as one image:
Show[ GraphicsArray[ Partition[sep, 1]]]

A question from me:
Why doesn't the command:
<<Graphics;
DisplayTogetherArray[ Partition[sep,1] ]
produces the same output as the last one?


bye,

Borut Levart
Slovenia



"Eleanna Tsoumani" <eleanna_tsoumani at yahoo.gr> wrote in message
news:c31583$61s$1 at smc.vnet.net...
> Hi all,
>
> I am trying to do the graphs of some sequences of functions,using
> mathematica 4.0, in order to see if their convergence is uniform or not.
>
> For example : Fn(x) = x^n , 0=< x =<1.
>
> The problem is that the graphs have to be 2D (not 3D) but I cannot
> find a way to do that.  Any suggestions?
> THANK YOU!
>
> Eleanna
>
>


  • Prev by Date: shade area between vertical lines
  • Next by Date: Re: Undiscovered Bug?
  • Previous by thread: Re: Graphs of Sequences of Functions:(
  • Next by thread: RE: Graphs of Sequences of Functions:(