help-octave
[Top][All Lists]
Advanced

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

Re: 20 GB console.log documents generated


From: James Sherman Jr.
Subject: Re: 20 GB console.log documents generated
Date: Tue, 30 Oct 2007 11:53:32 -0400

On 10/29/07, cal <address@hidden> wrote:
>
>  Here it the code I was using.
>
>  %% test the time it takes to create a 20k point sine wave an to plot it.
>
>  clear
>  clf
>
>  tic
>
>  T = 0 : 0.0001 : 2 - .0001;
>  Y = 2.3*sin(2*pi*10*T);
>
>  toc
>
>  plot(T,Y)
>
>  toc
>
>  Cal
>

Like Jordi has already said, is there any particular reason that you
need to plot so many values?  Working with those many points is fine
in octave, but because of how octave and gnuplot interface, its not a
good idea to plot so many.

James


reply via email to

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