I want to change the background value of figure to white.

조회 수: 282 (최근 30일)
YongHyun
YongHyun 2016년 4월 26일
댓글: Natasha Kovacevic 2022년 6월 19일
I've a figure like this (attached) and I want to change the background value of figure to white. The figure was generated by cloudPlot function below. http://www.mathworks.com/matlabcentral/fileexchange/23238-cloudplot
Thank you in advance.
  댓글 수: 1
Adam
Adam 2016년 4월 26일
Isn't the background already white? I'm not sure I understand what you are asking to do.

댓글을 달려면 로그인하십시오.

답변 (1개)

Kevin Moerman
Kevin Moerman 2016년 4월 26일
편집: Kevin Moerman 2016년 4월 26일
Perhaps this answers your question. Find where the figure is created in the code and replace by something like:
hf = figure; %Open figure and keep handle
hf=colordef(hf,'white'); %Set color scheme
hf.Color='w'; %Set background color of figure window
If instead of white you want black background and colorscheme, replace by 'black' and 'k', etc.
Kevin
  댓글 수: 1
Natasha Kovacevic
Natasha Kovacevic 2022년 6월 19일
Use gcf to get handle of your current figure, then set figure color to white:
set(gcf,'Color','w');

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Orange에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by