필터 지우기
필터 지우기

Black mask over pcolor plot

조회 수: 7 (최근 30일)
Nikolay Vinnichenko
Nikolay Vinnichenko 2019년 12월 3일
답변: J. Alex Lee 2019년 12월 3일
I have two matrices of the same size. The first one is function of two variables, which is to be displayed using pcolor. But then I need to mask (paint with black) part of this plot using the mask defined by the second matrix (zeros for transparent cells, ones for those to be masked). I need the colorbar and caxis to remain from the main pcolor of the function. How can I do this? I suspect this is something to do with AlphaData property of the second graph, but so far I only see the solutions for imshow, but not for pcolor.

채택된 답변

J. Alex Lee
J. Alex Lee 2019년 12월 3일
You can assign NaN in your first matrix according to your mask and set the background of your axes to black:
A = randi(255,200,200);
B = false(200,200);
B(20:30,60:80) = true;
A(B) = NaN;
pcolor(A)
set(gca,'Color','k')

추가 답변 (1개)

Image Analyst
Image Analyst 2019년 12월 3일
An example of what you'd like to see would be good. In the meantime, check out patch() and fill().

카테고리

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

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by