Clear Filters
Clear Filters

whitebg limitations on color

7 views (last 30 days)
Hong Gu Kang
Hong Gu Kang on 10 Sep 2016
Answered: Jordan Ross on 19 Sep 2016
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?

Accepted Answer

Jordan Ross
Jordan Ross on 19 Sep 2016
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

More Answers (0)

Categories

Find more on Colormaps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!