Interplolation of two different data set in a same grid interface

1 visualización (últimos 30 días)
Abhishek Savita
Abhishek Savita el 11 de Nov. de 2019
Respondida: Ayush Gupta el 8 de Jun. de 2020
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

Respuestas (1)

Ayush Gupta
Ayush Gupta el 8 de Jun. de 2020
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;

Categorías

Más información sobre Spline Postprocessing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by