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

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

[Octave-bug-tracker] [bug #46385] Can't Repmat Structure Arrays


From: Rik
Subject: [Octave-bug-tracker] [bug #46385] Can't Repmat Structure Arrays
Date: Fri, 1 Jul 2016 18:35:20 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:43.0) Gecko/20100101 Firefox/43.0

Follow-up Comment #8, bug #46385 (project octave):

Actually, it sounds like Matlab is returning a comma-separated list, which is
what is supposed to happen when you ask for the same field from a structure
array.

A simple example for testing in Matlab:


s(1).a = [1 2 3];
s(2).a = [4;5;6];
s.a           % Should have two lines beginning with "ans ="
size (s.a)    % Should error
size (s(1).a) % 1x3
size (s(2).a) % 3x1


Octave appears not to handle the 's.a' case correctly.



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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