Re: how to plot new data points to pre-existing figure
- To: mathgroup at smc.vnet.net
- Subject: [mg122874] Re: how to plot new data points to pre-existing figure
- From: Bob Hanlon <hanlonr357 at gmail.com>
- Date: Sun, 13 Nov 2011 07:58:11 -0500 (EST)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <201111130943.EAA00009@smc.vnet.net>
Manipulate[ Module[{z}, z[x_, m_] = m*x; Plot[z[x, m], {x, 0, 10}, PlotRange -> {{0, 10}, {0, 20}}, PlotLabel -> ToString[TraditionalForm[z[x, m]]]]], {m, 1, 5, 1, Appearance -> "Labeled"}] Bob Hanlon On Sun, Nov 13, 2011 at 4:43 AM, tle <truongvle at yahoo.com> wrote: > Hi, > > Could someone please tell me how to delete the old figure and create a new one in a for loop. > > thanks, > > testPlot[k_] := Module[{i, n, m, z}, > z[x_, m_] = m*x; > For[i = 1, i < k, > Print[{i}]; > plot1 = > Plot[z[x, i], {x, 0, 10}, PlotRange -> {{0, 10}, {0, 20}}]; > Print[plot1]; > i++]; > ] >
- References:
- how to plot new data points to pre-existing figure
- From: tle <truongvle@yahoo.com>
- how to plot new data points to pre-existing figure