Compare rows from different columns
조회 수: 3 (최근 30일)
이전 댓글 표시
I'm sure this isn't difficult but my brain is struggling a little:
I want to compare two column vectors and see if any of the values in the 1st are larger than any of the corresponding values in the 2nd.
For instance, if row 8 is larger in the 2nd column than the 1st.
Or if row 6 is larger in the 2nd column than the 1st.
댓글 수: 0
채택된 답변
Star Strider
2024년 2월 17일
One approach —
A = randi(50,10,2)
Col_2_Larger = A(:,2) > A(:,1)
ColNr = find(Col_2_Larger);
fprintf('Col 2 larger in row %d\n', ColNr)
.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Other Formats에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!