% ALLYLABEL Set all the y-axis labels on the current figure.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: ALLYLABEL Set all the y-axis labels on the current figure.%% CALL: allylabel(label)%% VERSION: $Id: allylabel.m,v 1.1 2008/08/05 17:51:32 ingo Exp $%% HISTORY: 17-11-2002 M Hewitson% Creation.%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%function allylabel(label) c = get(gcf, 'children'); for k=1:length(c) t = get(c(k), 'Tag'); if isempty(t) h = get(c(k), 'ylabel'); set(h, 'string', label); end endend