How to repeat the condition for two matrices having different sizes?
이전 댓글 표시
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
Jan
2019년 4월 25일
What does "applying a condition" mean? You want to repeat which same condition? Why "32:62"? Please edit the question and explain the details.
Jitesh Dadich
2019년 4월 25일
Jan
2019년 4월 25일
So you can compare the first block A(:, :, 1:31) with B. You get a logical 3D array as output, which contains a TRUE, if the element is greater. What do you want to do with the result? Do you want an all() or any()? Then how to proceed for the rest of A? 1085 is not a multiple of 31. Please explain exactly, what you want to achieve. The less the readers have to guess, the more likey is a useful answer.
Jitesh Dadich
2019년 4월 26일
Andrei Bobrov
2019년 4월 26일
I fixed my answer.
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!