필터 지우기
필터 지우기

Interplolation of two different data set in a same grid interface

조회 수: 1 (최근 30일)
Abhishek Savita
Abhishek Savita 2019년 11월 11일
답변: Ayush Gupta 2020년 6월 8일
Hi all, G'day.
I have a query about the grid interface ionterpolation. Suppose I have two data set as tx_trans with dimension lon, lat and depth (360,300,50) at a grid interface and another variable temperatrure with same dimension and size i.e. (360,300,50) at a center of the grid. I want to interpolate temperatrure data in to tx_trans grid i.e. temperature at a grid interface. Any idea or siggestion?
Thanks in advance!
Abhi

답변 (1개)

Ayush Gupta
Ayush Gupta 2020년 6월 8일
The hold on piece of code can be used for the interpolation of two different datasets in a same grid interface, for example:
Suppose X,Y,Z is the grid and data sets to interpolate are(X1,Y1) and (X2,Y2). The following method will be helpful
V1 = interp2(X,Y,Z,X1,Y1);
V2 = interp2(X,Y,Z,X2,Y2);
surf(X1,Y1,V1);
hold on;
surf(X2,Y2,V2);
hold off;

카테고리

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