Interplolation of two different data set in a same grid interface
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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
0 commentaires
Réponses (1)
Ayush Gupta
le 8 Juin 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;
0 commentaires
Voir également
Catégories
En savoir plus sur Spline Postprocessing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!