function makefigletter(sLet); % function for making figure letters % % makefigletter(sLet) % Standardizes making letters for each figure. Just provide sLet, the % letter you want to use to label the figure. Font size = 14. ylims = get(gca,'YLim'); xlims = get(gca,'XLim'); tt=text(xlims(2)*1.05-xlims(1)*.05,ylims(2),sLet) axis([xlims ylims]); set(tt, 'FontSize', 14);