1. time = 1:10;
    2. u = 1:10;
    3. figure;
    4. plot(time,u,'r');
    5. xlabel('时间(秒)');ylabel('控制量输入');
    6. set(gca,'FontSize',14); % 设置文字大小,同时影响坐标轴标注、图例、标题等。
    7. set(get(gca,'XLabel'),'FontSize',14);%图上文字为8 point或小5
    8. set(get(gca,'YLabel'),'FontSize',14);