Grid Resolution Change in Matlab
古いコメントを表示
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?
回答 (2 件)
Walter Roberson
2020 年 5 月 12 日
編集済み: Walter Roberson
2020 年 5 月 12 日
NewGrid = imresize(YourGrid, 1/4);
Each pane will be done independently, so the result would be 3 x 50 x 300
2 件のコメント
Joydeb Saha
2020 年 5 月 13 日
Walter Roberson
2020 年 5 月 13 日
YourGrid = Name_of_your_data_matrix_goes_here;
Joydeb Saha
2020 年 5 月 13 日
0 投票
1 件のコメント
Walter Roberson
2020 年 5 月 13 日
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);
カテゴリ
ヘルプ センター および File 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!