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

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

[Octave-bug-tracker] [bug #50189] Segfault when drawing sphere as first


From: Markus Mützel
Subject: [Octave-bug-tracker] [bug #50189] Segfault when drawing sphere as first plot
Date: Thu, 2 Feb 2017 11:43:06 +0000 (UTC)
User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.0) Gecko/20100101 Firefox/52.0

Follow-up Comment #24, bug #50189 (project octave):

For what its worth, the results from the tests from comment #15 and comment
#16 in Matlab R2016a:

>> labels = {'xlabel', 'ylabel', 'zlabel', 'title'};
hlabels = cell2mat (get (gca, labels));
Error using cell2mat (line 52)
CELL2MAT does not support cell arrays containing cell arrays or objects.


Fails because graphics handles are objects now.
Slightly modified keeping the spirit of the test:

>> close all
>> labels = {'xlabel', 'ylabel', 'zlabel', 'title'};
>> hlabels = get (gca, labels);
>> hparents = get ([hlabels{:}], 'parent');
>> all ([hparents{:}] == gca)

ans =

     1

>> allchild (gca)

ans = 

  0x0 empty GraphicsPlaceholder array.



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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