给Matlab的图片加背景色

 转自:http://earvinlin.spaces.live.com/blog/cns!5fa635e2ba4f9bb6!514.entry

这个问题曾经困扰了我很久,使我这个土人一度以为Matlab干不了这么个事情(后来发现MetaPost, Asymptote等可以,觉得非常之先进-_-),今天终于偶然在Help里发现,拿出来共享(其实知道了真是太太太简单了,但Google就是搜不到-_-),以下是Help中的原文



********************  我开始引用Matlab的Help  ********************

The following example sets the figure background color to blue, the axes background color to yellow, and then sets InvertHardCopy to off so that these colors will appear in your printed or exported figure.

set(gcf, 'color', 'blue');
set(gca, 'color', 'yellow');
set(gcf, 'InvertHardCopy', 'off');

********************  我结束引用Matlab的Help  ********************

另外,输出大量图片时如果一个一个手工Export是要死人的。比较方便的是用print命令,
比如要输出成eps文件可以

print -eps myfigure

就生成myfigure.eps了,如果要生成彩色的话就-epsc,具体参见Matlab的Help。

-----------------------
学艺不精

你可能感兴趣的:(Matlab,matlab,colors,google)