Borrar filtros
Borrar filtros

how to find a non affected rank in a vector column

1 visualización (últimos 30 días)
Frederic Cleva
Frederic Cleva el 30 de Abr. de 2019
Comentada: dpb el 2 de Mayo de 2019
Dear matlab users,
in order to make lghter my script I treat the format of the legend of several plots in a dedicated zone of my script
figure(1); plot(x,y); h_leg(1) = legend('plot1')
...
figure(2); plot(x,y); h_leg(2) = legend('plot2')
...
figure(4); plot(x,y); h_leg(4) = legend('plot4')
...
%% overall treatment of the various legends
for j=1:4; set(h_leg(j),fontsize,12); end
here, the issue is that h_leg(3) does not exist and the last loop will fail in dealing with h_leg.
is there any mean to check that this class of object has some rank left undefined? A kind of isempty(h_leg(3)) for example
Thanks for your help
Cheers

Respuesta aceptada

dpb
dpb el 30 de Abr. de 2019
Probably for such a case as written
for j=1:4
try
set(h_leg(j),fontsize,12);
catch
end
end
will solve the problem; if you're out to optimize,
set(h_leg([1 2 4]),'fontsize',12)
altho the subscript vector should be coded dynamically instead of hardcoded (as should the loop be over 1:numel(h_leg) instead of 1:4)
What is the type of h_leg()?
  2 comentarios
Frederic Cleva
Frederic Cleva el 2 de Mayo de 2019
Many thanks for the feedback,
indeed the catch/try makes the job although a bit heavy.
and thanks for the advise on dynamical coding
h_leg is a "graphics" array with ranks 1 & 2 of "GraphicsPlaceholder" type and ranks 3 & 4 of "legend" type
Cheers
dpb
dpb el 2 de Mayo de 2019
Editada: dpb el 2 de Mayo de 2019
I don't know that try...catch is any "heavier" than coding specifically to test whether every handle in the array of objects is a legend--the only way I can see to do that is to test strcmp(h_leg(i).Type,'legend') and it will also fail on the uninitialized object placeholder locations so would still have to either catch the error or do some other preliminary test.
I think it would be better to rearrange the code logic to either set the legend text property for those lines when they're being created or at least build the addressing array to them at that point instead.
AFAICT, there is no specific functionality provided to return a logical variable that a graphics placeholder array element is, as yet, unitiialized. That could, it seems, be a reasonable enhancement request.
I'll admit I've used gobject "in anger" precisely zero times to date so I'm far from adept in knowing what one can/cannot do with it; my penchant is to keep graphics handles in arrays of the specific type when the object(s) is/are created rather than in some catchall grab bag.

Iniciar sesión para comentar.

Más respuestas (2)

Walter Roberson
Walter Roberson el 30 de Abr. de 2019
You can use isvalid() or ishghandle()
set(h_leg(isvalid(h_leg(1:4))), 'fontsize', 12);
No loop needed. If h_leg is maximum size 4 then leave out the (1:4)
  4 comentarios
Walter Roberson
Walter Roberson el 2 de Mayo de 2019
Frederic Cleva comments to me:
This makes the job too (ishghandle) !! Thanks
dpb
dpb el 2 de Mayo de 2019
Indeed...either it or isgraphics turns out to return False for the uninitialized graphics object array elements -- I hadn't found either; the doc links are quite remiss at least on R2017b that is presently latest installed here (R2018b having mysteriously disappeared and not having had time to dig into why/reinstalling)...

Iniciar sesión para comentar.


Frederic Cleva
Frederic Cleva el 2 de Mayo de 2019
Thanks for the helpfull clarification, all your remarks open some new tracks.
Regards

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Productos


Versión

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by