How to repeat the condition for two matrices having different sizes?
1 回表示 (過去 30 日間)
古いコメントを表示
I have two matrices of two different sizes A (61 x 61 x 1085) & B (61 x 61 x 31)
I apply my conditions to first A(61 x 61 x 31) until it reaches to the size of B.
Now I want to repeat the same conditions for next A (61 x 61 x 32:62) until it reaches to the size of B....and so on...upto A(61 x 61 x 1085).
Anyone, thanks in advance.
5 件のコメント
採用された回答
Andrei Bobrov
2019 年 4 月 25 日
編集済み: Andrei Bobrov
2019 年 4 月 26 日
I edited the answer.
out = A > B(:,:,mod(0:size(A,3)-1,size(B,3))+1);
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!