find max value in a matrix
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a=[ 1 2 3; 7 8 9; 4 5 6; 2 1 3]. I want to find max value in the matrix 'a' but i don't want it to consider second row. So I should get 6 as the answer. How to do it?
댓글 수: 0
답변 (1개)
Star Strider
2015년 2월 22일
This works:
a=[ 1 2 3; 7 8 9; 4 5 6; 2 1 3];
a_134 = a([1 3 4],:);
max_a134 = max(a_134(:));
댓글 수: 2
Star Strider
2015년 2월 22일
In that instance, just nest two max calls:
max_a134 = max(max(a([1 3 4],:)))
참고 항목
카테고리
Help Center 및 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!