four points grid interpolation function

조회 수: 11 (최근 30일)
sermet
sermet 2015년 8월 24일
답변: Mike Garrity 2015년 8월 24일
lat1=87.5;
lat2=85;
lon1=-180;
lon2=-175;
coordinates of point_1= [lat2,lon2];
coordinates of point_2=[lat1,lon2];
coordinates of point_3=[lat1,lon1];
coordinates of point_4=[lat2,lon1];
value_point_1=268;
value_point_2=260;
value_point_3=259;
value_point_4=266;
evaluated_point_coordinates=[86,-177];
%I need to interpolate 4 grid points value w.r.t. the evaluated_point_coordinates. Which function I need to use for this grid interpolation?

채택된 답변

Mike Garrity
Mike Garrity 2015년 8월 24일
Probably interp2 with linear, but I discussed some of the details in this blog post about the MATLAB Graphics surface primitive. Be sure to check out the comments section for a nice discussion of some of the options in the Image Processing Toobox.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interpolation에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by