Re: Graphs of Sequences of Functions:(
- To: mathgroup at smc.vnet.net
- Subject: [mg46903] Re: Graphs of Sequences of Functions:(
- From: bobhanlon at aol.com (Bob Hanlon)
- Date: Sun, 14 Mar 2004 23:54:20 -0500 (EST)
- References: <c31583$61s$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
nmax = 4;
Plot[Evaluate[
Table[x^n, {n, 0, nmax}]],
{x, 0, 1},
PlotStyle -> Table[
Hue[(n + nmax)/(2nmax)],
{n, 0, nmax}]];
Bob Hanlon
In article <c31583$61s$1 at smc.vnet.net>, =?iso-8859-7?q?Eleanna=20Tsoumani?=
<eleanna_tsoumani at yahoo.gr> wrote:
<< 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?