How can I use "findall" and/or "findobj" to count the number of figures that are
open (even if they are invisible) ?
Thanks.
>How can I use "findall" and/or "findobj" to count the number of figures that are
>open (even if they are invisible) ?
figurecount = length(findobj('Type','figure'));
--
"And believe me, I was very lousy yesterday.
I had nothing to say, and, by God, I said it."
-- Walter Wellesley Smith
Thanks for the very quick answer.