필터 지우기
필터 지우기

How can I represent EOFs?

조회 수: 2 (최근 30일)
Jaime  de la Mota
Jaime de la Mota 2017년 3월 23일
댓글: Walter Roberson 2017년 3월 23일
I have a matrix of 47 lines and 3 columns which show the EOFs at 47 measurement places. I also have two vectors with the latitude and longitude at which the stations are located I want to plot 3 maps, one for each EOF in which 47 points are shown
for plotting them I use geoshow as:
ax = worldmap('angola');
load coastlines
setm(ax, 'Origin', [0 20 0])
plotm(coastlat,coastlon);
hold on
for i=1:47
lat=latitude(i)
lon=longitude(i)
value=EOF(i,1)
geoshow(ax, lat, lon, 'DisplayType', 'point')
end
I have no idea on how can I represent the values in the variable value on the map. Any help is welcome. Thanks for reading.
  댓글 수: 1
Walter Roberson
Walter Roberson 2017년 3월 23일
https://en.m.wikipedia.org/wiki/Empirical_orthogonal_functions would seem to be the appropriate meaning of EOF here?

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

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by