makefigletter.m

Revision 1 - 6/13/07 at 2:36 pm by e2holmes

Back to revision history for makefigletter.m
This file is part of the project Plotting routines
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);
Sculpin 0.2 | xhtml | problems or comments? | report bugs