octave-bug-tracker
[Top][All Lists]
Advanced

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

[Octave-bug-tracker] [bug #55707] plot(vector, scalar) is very slow


From: Markus Mützel
Subject: [Octave-bug-tracker] [bug #55707] plot(vector, scalar) is very slow
Date: Wed, 13 Feb 2019 08:33:31 -0500 (EST)
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0

Follow-up Comment #1, bug #55707 (project octave):

(A) It looks like Matlab produces an empty plot because - unlike Octave - it
doesn't add markers if there is only one point per line.

(B) I actually prefer Octave's behavior.

For similar results in Matlab use:

x = 1:1000; % vector
y = 10;     % scalar

tic
plot(x, y, 'o');
toc


(C) I think we shouldn't automagically transpose input vectors.

(D) Octave takes quite long when plotting many lines. I think there was a bug
report about it a while ago. But I cannot find it right now.

    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?55707>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

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