Plot array data with its values only inside polygon
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a data 420*940*6 (the value of each grid varies from 0-100) and I want to plot data only inside polygon (s). lat (420*1) and lon1(940*1).
we can plot this signle page data in this way
S = shaperead(polygon);
N = length(S);
[X,Y] = meshgrid(lon1,lat1);
data= test;
for k = 1:N
idx = insidepoly(X(:),Y(:),S(k).X,S(k).Y);
hold on
plot(X(idx), Y(idx), 'r*')
end
How we can plot all pages (6) together according to values (0-100) as the attached figure?
Guide me in this regard.
댓글 수: 0
답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Surfaces, Volumes, and Polygons에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!