re-us 发表于 2010-9-27 11:44

如何去掉图形输出的legend的边框

如果用save as手动的话,保存出来的eps格式没有右下角的黑框(就是legend的EdgeColor)。但是用print命令输出的话,出来的有黑框。我要批量输出,所以不可能手动处理。这里是代码clc
clearx=-pi:pi/8:pi;
y=sin(x);
h=plot(x,y);h=legend(h,'sin');
set(h,'Location','SouthEast');
set(h,'EdgeColor',);print -depsc sin_exp
谢谢

Happy99 发表于 2010-9-27 16:25

本帖最后由 Happy99 于 2010-9-27 16:38 编辑

help saveas ??
or
Print Preview -> Color -> Background color -> Same as figure

qibbxxt 发表于 2010-9-27 16:40

帮助文件里面有讲到这些的legend boxoffThis is similar to the effect of the command legend boxoff, except that boxoff also hides the legend's border.

re-us 发表于 2010-9-27 21:08

多谢,多谢。
不过没有搞懂为什么设成白色,没有效果。
页: [1]
查看完整版本: 如何去掉图形输出的legend的边框