1)legend 去掉边框
h = legend('LINE 1','LINE 2','LINE 3');
set(h, 'box','off');
感觉需要配合location使用,不然去掉边框之后legend就不能随意移动了~
2)修改legend和xlable,ylabel的字体大小
set(gca,'FontName','Times New Roman','FontSize',14);
set(get(gca,'XLabel'),'FontName','Times New Roman','FontSize',14);
set(get(gca,'YLabel'),'FontName','Times New Roman','FontSize',14);