How to used 'griddedinterpolant' command in for loop?

조회 수: 1 (최근 30일)
Pankaj Dey
Pankaj Dey 2017년 8월 9일
댓글: José-Luis 2017년 8월 9일
For example, I have a geospatial data with fixed latitude and longitude with 100 layers(values observed during 100 days) of a variable at 1 degree (latitude) by 1 degree (longitude) resolution. Now I want to interpolate the data into 0.25 degee by 0.25 degree for each of the 100 layers using a "for-loop". How to do proceed for this operation?
Thank you Pankaj

채택된 답변

José-Luis
José-Luis 2017년 8월 9일
편집: José-Luis 2017년 8월 9일
data = rand(10,10,100)
for ii=1:100
subset = data(:,:,ii); %Copy probably unnecessary, left for clarity
do_your_thing(subset)
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interpolation of 2-D Selections in 3-D Grids에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by