Set the FontSize property of the axes.
>> plot(rand(1,20));set(gca,'FontSize',3)
--
Q = quotation(rand);
if isempty(Q); error('Quotation server filesystem problems')
else sprintf('%s',Q), end
plot([1:10])
xlhand = get(gca,'xlabel')
set(xlhand,'string','X','fontsize',20)
It worked great; huge thanks!
Mark
Many thanks for the answer. While Walt's answer got me out
of my immediate difficulty, your answer gives me
information that will be useful in the long term!
Mark
Look at Matt Fig's post.
That shows you how to apply only to the x-axis.
Matt Fig's post applies to the Xlabel, not Xlabelticks, as I think
Juliette is wanting.
I almost said the same thing until I figured that out.
And sorry, I can't figure it out either.
-Nathan
There should be a way around this .. anyone know ??
There is not. The property that controls both the XTickLabels and
YTickLabels is FontSize. The only thing you can do is create separate
text items and put them where you want the labels to go.
--
Doug Schwarz
dmschwarz&ieee,org
Make obvious changes to get real email address.