[Scilab-users] labels for 2 y-axes in plot

Samuel Gougeon sgougeon at free.fr
Tue Mar 7 18:44:13 CET 2017


Le 07/03/2017 à 16:39, Erhy a écrit :
> now I understand*!*
> I'm not a native English speaker and in my dictionary
> axes means plural and axis means one (singular)
> and I searched for selection of a certain axis after /*a = gca()*/
>
> Now I think, it is only possible no modify the axis last created with
> /*newaxes();*/
just do
ax1 = gca();
to record the handle of the current axes before calling newaxes().

It is also possible to get the handle of a not current axes with
gcf().children(2)  // the previous one of the current figure
gcf().children(3)  // the antepenultimate one
etc

HTH




More information about the users mailing list