matlab科研绘图tip:
- 删除图例背景框 legend('boxoff')
- 去除上右边框,在plot前加入hold on
- set(gca,'Visible','off')去掉图片边框
- 设置图例字体大小 lgd=legend('期望输出', '实际输出'); lgd.FontSize = 12;
- legend('Location','best')% 图例的位置,其他位置
'north'
坐标区中的顶部 'south'
坐标区中的底部 'east'
坐标区中的右侧区域 'west'
坐标区中的左侧区域 'northeast'
坐标区中的右上角(二维坐标区的默认值) 'northwest'
坐标区中的左上角 'southeast'
坐标区中的右下角 'southwest'
坐标区中的左下角 'northoutside'
坐标区的上方 <'southoutside'