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

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

[Octave-bug-tracker] [bug #35216] line(x, y, 'propname', 'propvalue') th


From: Rik
Subject: [Octave-bug-tracker] [bug #35216] line(x, y, 'propname', 'propvalue') throw error
Date: Mon, 20 Feb 2012 21:09:29 +0000
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2

Follow-up Comment #2, bug #35216 (project octave):

Ben,

If I understand your changeset you are just looking to see whether the number
of elements for the X, Y, and Z arguments are the same.  I think you can do
this succinctly without broadcasting by using the isequal function which is
equivalent to 'a == b == c == ...' and only returns true if everything is
equal.

Looking at changeset-1.patch, I think the whole thing could be simplified to


nums = cellfun (@numel, varargin(1:num_data_args));
if (! isequal (nums{:}))
  error ("line: number of X, Y, and Z points must be equal");
endif



    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?35216>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

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