Extracting data from matrix

조회 수: 2 (최근 30일)
Ahmet Hakan UYANIK
Ahmet Hakan UYANIK 2021년 5월 2일
답변: Chad Greene 2021년 5월 2일
Hi,
I have a matrix A with the size of 127x6750 which is longitude and latitude when plotted covering the world. Also matrix B with the same size but consist of zeros and ones; zeros corresponds to ocean, ones corresponds to land.
So when i plot this, I just want to plot data corresponds to ocean. How can i combine both and plot only one feature?

채택된 답변

Chad Greene
Chad Greene 2021년 5월 2일
To only plot the ocean data, try masking out the land data by setting those values in A to NaN. like this:
A(B==1) = NaN; % sets land grid cells to NaN
pcolor(lon,lat,A)
shading flat

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Oceanography and Hydrology에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by