Hi everyone! I need your help on this.

2 ビュー (過去 30 日間)
Engdaw Chane
Engdaw Chane 2018 年 2 月 8 日
コメント済み: Engdaw Chane 2018 年 2 月 9 日
I have two (three dimensional) arrays. var_1=170x176x360 var_2=194x201x360 I want to resample only the cell size of var_1 to the cell size of var_2 for all 360 months using bicubic method. I tried the following, and it didn’t work.
Var_resampled = resizem(var_1(:,:,i)),[194 201],'bicubic');
Thank you.
  4 件のコメント
Walter Roberson
Walter Roberson 2018 年 2 月 8 日
Var_resampled(:,:,i) = resizem(var_1(:,:,i)),[170 176],'bicubic');
assuming that you are in for i = 1:size(var_1,3)
Engdaw Chane
Engdaw Chane 2018 年 2 月 9 日
Walter Roberson, Thank you very much!

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by