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

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

[Octave-bug-tracker] [bug #59116] Return value for the String property o


From: Guillaume
Subject: [Octave-bug-tracker] [bug #59116] Return value for the String property of uicontrol
Date: Tue, 15 Sep 2020 14:51:32 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0

URL:
  <https://savannah.gnu.org/bugs/?59116>

                 Summary: Return value for the String property of uicontrol
                 Project: GNU Octave
            Submitted by: gyom
            Submitted on: Tue 15 Sep 2020 06:51:31 PM UTC
                Category: Plotting
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Matlab Compatibility
                  Status: None
             Assigned to: None
         Originator Name: Guillaume
        Originator Email: 
             Open/Closed: Open
                 Release: dev
         Discussion Lock: Any
        Operating System: Any

    _______________________________________________________

Details:

There is a small difference between Matlab and Octave regarding the return
value of the String property of a uicontrol widget:


in = { 'a|b|c', ['a';'b';'c'], {'a','b','c'}, ["a","b","c"]};
for i=1:numel(in)
  U = uicontrol ('Style', 'listbox', 'String', in{i});
  get (U, 'String')
end


Matlab returns:


ans =
  3x1 char array
    'a'
    'b'
    'c'
ans =
  3x1 char array
    'a'
    'b'
    'c'
ans =
  3x1 cell array
    {'a'}
    {'b'}
    {'c'}
ans =
  3x1 cell array
    {'a'}
    {'b'}
    {'c'}


Octave returns 'a|b|c' for the first two and does not yet understand string
vectors. Compatibility would be achieved by returning char arrays instead of
pipe-separated char vectors.





    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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