List of maximum number in the matrix

조회 수: 1 (최근 30일)
Moe
Moe 2014년 5월 26일
답변: Star Strider 2014년 5월 26일
Hi everyone,
Suppose I have a matrix:
a = [3;1;4;2;3;4;1;4;3;1;2;4];
Then I want matrix b to be:
b = [3;6;8;12]
  • Matrix b is included the rwo number of all max number in the matrix a, e.g. row(3)=4; row(6)=4; row(8)=4; row(12)=4;
Can anyone please help me?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 5월 26일
a = [3;1;4;2;3;4;1;4;3;1;2;4];
idx=find(ismember(a,max(a)))

추가 답변 (1개)

Star Strider
Star Strider 2014년 5월 26일
Use the find function:
a = [3;1;4;2;3;4;1;4;3;1;2;4];
b = find(a == max(a))
yields:
b =
3
6
8
12

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by