help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: how to replot


From: Andy Buckle
Subject: Re: how to replot
Date: Mon, 27 Sep 2010 06:17:09 +0100

On Mon, Sep 27, 2010 at 5:45 AM, Rizal suryana <address@hidden> wrote:
> Haii All
> I Have source like this
>
> data2 = load('TDA8.txt');
>
> i=1;
>
> k=100;
>
> while(k <= 4000)
>
> x=[data2(i:k,1)];
>
> y=[data2(i:k,2)];
>
> i = i + 100;
>
> k = k + 100;
>
> plot(x, y,'*');
>
> endwhile
>
> the result plot only the last data
>
> but i want if x and y get new data, the result plot same figure
> how to i do it...
>
> thank`s u
>
> --

I'm not sure I understand the question. However, "hold on" might be the answer.

-- 
/* andy buckle */


reply via email to

[Prev in Thread] Current Thread [Next in Thread]