필터 지우기
필터 지우기

How do I set back color of figure by pcolor to white?

조회 수: 9 (최근 30일)
Ting Zheng
Ting Zheng 2020년 2월 1일
댓글: J. Alex Lee 2020년 2월 3일
I try to use set(h,'defaultfigurecolor','white'), but it can't set the background color of figure by pcolor to white.
  댓글 수: 4
Image Analyst
Image Analyst 2020년 2월 2일
I'm curious as to your reasons for using pcolor() rather than image, imagesc() or imshow()? What are they?
J. Alex Lee
J. Alex Lee 2020년 2월 3일
pcolor naturally treats NaN as missing, which might be what OP needs considering the discussion about background color. Drawback is that you can't set linestyle in-line, but you could argue the pcolor way is simpler:
% C is an image with NaN's meant to be transparent
h1 = pcolor(C);
C.LineStyle = 'none';
% vs
AData = ones(size(C));
AData(isnan(C)) = 0;
h2 = imagesc(C,'AlphaData',AData)
It's also a bit less obstrusive, e.g., doesn't alter existing axis limits
But to be honest, at the time I was interested in pcolor, I completely forgot about the AlphaData property of the image functions.

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

답변 (0개)

태그

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by