Finding the location of Maximum value in an array?
조회 수: 4 (최근 30일)
이전 댓글 표시
I know that my questions is like beeing answered. I did try the same solution i find here but I dont know why it does not work below is an example.
A = [1 2 9 4 5 6 7]
[Amins, idx] = max(A)
[Amin, Aj] = max(Amins)
Ai = idx(Aj)
A =
1 2 9 4 5 6 7
**Errro Insufficient number of outputs from right hand side of equal sign to satisfy assignment.
댓글 수: 1
Voss
2022년 2월 18일
The example provided seems to work without error:
A = [1 2 9 4 5 6 7]
[Amins, idx] = max(A) % maximum value of A is 9, at index 3
[Amin, Aj] = max(Amins) % maximum value of Amins is 9, at idx 1
Ai = idx(Aj) % 1st element of idx is 3
채택된 답변
Cris LaPierre
2022년 2월 18일
I do not follow what you are trying to do, but below is an explanation of what your code is doing.
A = [1 2 9 4 5 6 7];
% Find the maximum value (Amins) and its index (idx). Both are scalars
[Amins, idx] = max(A)
% Find the maximum value (Amin) and its index (idx).
% Since Amins is a scalar, Amin=Amins, and Aj=1
[Amin, Aj] = max(Amins)
% idx is a single number. Aj is 1, so Ai = idx
Ai = idx(Aj)
댓글 수: 2
Cris LaPierre
2022년 2월 18일
Perhaps you have overwritten MATLAB's max function?
Try clearing your workspace.
If that doesn't work, share the result of the following command.
which max
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!