Re: [Scilab-users] How to identify componants in a figure ?

2019-10-11 Thread P M
Hi, if you want to count how many axes-children there are in a figure, you may work with "tags". Quick-n-dirty example below. best regards, Philipp clc;clear(); // create the figuref = figure(); // first axesplot3d();a3d = gca();a3d.tag = 'axes'; // menumenu_1=uimenu(f,'label',

[Scilab-users] How to identify componants in a figure ?

2019-10-11 Thread Perrichon
Hello In my application, built with uicontrol in a main figure, I add graphs (Axes) with bode or Nyquist plot in the the main frame So, at the end, if we do f=gcf() I get : children: matrix 39x1 I add a=f.children Then a is a collection (with bode) : Axes