필터 지우기
필터 지우기

How to display two dataset comparison in one map graph?

조회 수: 1 (최근 30일)
Hiten Xpertlab
Hiten Xpertlab 2021년 7월 13일
답변: Chunru 2021년 7월 13일
Hello guys, I have two 100*100 matrix and I have to display them in one single Europe map graph with comparison. but I don't know how to do that and I have a deadline today. please guys help me to do this. thank you in advance

채택된 답변

Image Analyst
Image Analyst 2021년 7월 13일
Try imshowpair() or imfuse().

추가 답변 (1개)

Chunru
Chunru 2021년 7월 13일
With the same map region, you can plot the difference of data.
lat = linspace(10, 20, 11);
lon = linspace(5, 15, 11);
[latg, long] = meshgrid(lat, lon);
data1 = randn(length(lat), length(lon));
data2 = randn(length(lat), length(lon));
geoshow(latg, long, data2-data1, 'DisplayType', 'surface')
colorbar

카테고리

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