I WANT TO SOLVE THIS PROBLEM

조회 수: 1 (최근 30일)
abduall hassn
abduall hassn 2015년 8월 22일
편집: abduall hassn 2016년 11월 3일
I want select max value from very row
like this until 364

채택된 답변

Walter Roberson
Walter Roberson 2015년 8월 22일
[maxvals, maxidx] = max(YourMatrix, [], 2);
Now maxidx will be a vector of column numbers, one per row.
  댓글 수: 4
abduall hassn
abduall hassn 2015년 8월 23일
편집: Walter Roberson 2015년 8월 23일
Thanx alot brother
But i want to ask. Why u give 2?
And think u again
[maxvals, maxidx] = max(YourMatrix, [], 2);
Walter Roberson
Walter Roberson 2015년 8월 23일
The 2 refers to dimension #2, the columns . The above functions equivalently to
for K = 1 : size(YourMatrix,1)
[maxvals(K,1), maxidx(K,1)] = max(YourMatrix(K,:),[]);
end
If you left out the 2, then the default would be to work along the first non-singular dimension, like
for K = 1 : size(YourMatrix,2)
[maxvals(1,K), maxidx(1,K)] = max(YourMatrix(:,K),[]);
end

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Operators and Elementary Operations에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by