From: Heidi on
When I run my program the ylabel does not show up on my figure.
The words and letters are still there, sometimes I can see them if I shrink the font enough. But the label is not centred and it appears to be spelt backwards....

I am using a MacOS, and MATLAB version 7.6.

This is my plotting code:

figure(11)
h = axes('FontSize',14);
plot(times(2:end)+36,NewExposedRec2_all,'LineWidth',2);
xlabel('\fontsize{16}Time (weeks)')
axis([70 80 0 max(max(NewExposedRec2_all))+max(max(NewExposedRec2_all))/50]);
ylabel('\fontsize{18} Fraction of Newly Infecteds from Rec Calc')
title(['\fontsize{18} R0 = ',num2str(R0here),'; AR=', num2str(100*meanAttackN2(1),4), '%']);

If anyone could help me out, that would be awesome, a colleague of mine is having a similar problem as well.