Working with even rows
이전 댓글 표시
Hello, I have a matrix 4x4, and I want to find the maximum of all elements which are in even rows.
채택된 답변
추가 답변 (1개)
Wayne King
2012년 4월 16일
x = randn(4,4);
y = x(2:2:end,:);
max(y,[],2)
The above gives you maximums in rows 2 and 4.
If you want the maximum of all the elements in rows 2 or 4 considered all at once
x = randn(4,4);
y = x(2:2:end,:);
max(y(:))
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!