필터 지우기
필터 지우기

if all elemets of a array equal, which array will be choose by MAX function?

조회 수: 2 (최근 30일)
Hi
I have an a = [0, 0 , 0 , 0 , 0 ] matrix and when try to use max(a) it always choose the first element as a max value. I need a function like MAX(x) but when all the elements are equal to each other is should choose the one of them randomly. is there any function like that ?

채택된 답변

Stephen23
Stephen23 2020년 5월 17일
편집: Stephen23 2020년 5월 18일
There is no inbuilt function, but you can do it yourself very easily:
>> a = [0,0,0,0,0];
>> ida = find(a==max(a));
>> idx = randi(numel(ida))
idx = 4
>> a(ida(idx))
ans = 0
  댓글 수: 2
Steven Lord
Steven Lord 2020년 5월 17일
Don't use idx as an index into a. Use it as an index into ida.
a = [1:100 0 0];
ida = find(a == min(a))
idx = randi(numel(ida))
fprintf("Element %d of a is %d.\n", idx, a(idx));
fprintf("Element %d of the vector %s is %d, corresponding to %d in a.\n", ...
idx, mat2str(ida), ida(idx), a(ida(idx)))
The same idea holds when using max instead of min.
Stephen23
Stephen23 2020년 5월 17일
@Steven Lord: thank you for bringing that to my attention... that was actually my original intent, but got lost somewhere along the way. Fixed now.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by