help-octave
[Top][All Lists]
Advanced

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

gnuplot limits?


From: Eric Chassande-Mottin
Subject: gnuplot limits?
Date: Tue, 13 Nov 2007 08:48:03 -0500

hi,

the following code which plots 1000 random segments in [0,1]^2
fails on my computer, from time to time with the error

gnuplot> 0.805198 0.770516
         ^
         line 14158: invalid command

is that a known issue due to gnuplot limitation (number of lines
in a plot is limited) or to a bug in the data transmission from
octave to gnuplot when the data volume is large?

the large N, the more likely the code fails.

thanks,
eric.

==================================
clf;

N=1000;

axis([0 1 0 1]);

for n=1:N,
  x=[rand rand];
  y=[rand rand];
  plot(x,y);
  hold on;
endfor;

==================================


reply via email to

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