[toc]
1. 问题描述
MATLAB绘图中,默认的legend设置,总会显示边框,影响图像显示,如何去除呢?
2. 技术背景
MATLAB
3. 解决方案
hl = legend('x')
set(hl,'box','off')
4. 实施示例
- 绘制基本图形
t = 0:0.01:2*pi;
figure
plot(t,sin(t))
- 去除legend边框
hl = legend('x');
set(hl,'box','off')
5. 常见问题
暂无。
网友评论