whitebg limitations on color

7 次查看(过去 30 天)
I accidently changed my figure option of MATLAB R2016a. whitebg made my figure background turn into gray
To make it default, i commanded 'whitebg('w')', but it does not change into complete white,In another way,
white must be [1 1 1] in color map, and i commanded 'whitebg([1 1 1])', and checked it through 'gcf' command, it showed that color is [0.855387679992951 0.855387679992951 0.855387679992951].
Why does it have limitation? why cannot have complete white?

采纳的回答

Jordan Ross
Jordan Ross 2016-9-19
Hello Hong,
The function 'whitebg' will change the background color of the axes, not the figure. See the documentation for 'whitebg': http://www.mathworks.com/help/releases/R2016a/matlab/ref/whitebg.html?searchHighlight=whitebg
To change the background color for the figure (i.e. the window) you can use the following command:
set(gcf,'color','white')
which will set the background color of the current figure to white. Here is a related MATLAB Answers post about changing the default background color: https://www.mathworks.com/matlabcentral/answers/96816-how-do-i-change-the-default-background-color-of-all-figure-objects-created-in-matlab

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Colormaps 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by