Grid Resolution Change in Matlab
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
If I have a matrix of 10x200x300 double of horizontal resolution 0.25x0.25 (degrees). How can I change the horizontal resolution to 1x1 (degrees) in matlab?
0 commentaires
Réponses (2)
Walter Roberson
le 12 Mai 2020
Modifié(e) : Walter Roberson
le 12 Mai 2020
NewGrid = imresize(YourGrid, 1/4);
Each pane will be done independently, so the result would be 3 x 50 x 300
Joydeb Saha
le 13 Mai 2020
1 commentaire
Walter Roberson
le 13 Mai 2020
YourGrid = Name_of_your_data_matrix_goes_here;
Time_Averaged_Grid = squeeze(mean(YourGrid,1));
Time_Averaged_1degree_Grid = imresize(Time_Averaged_Grid, 1/4);
Voir également
Catégories
En savoir plus sur Interpolation 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!