how to know the indices of multiple max values?
    16 次查看(过去 30 天)
  
       显示 更早的评论
    
hi there!
I'm having problem about identifying the indices(position) of a multiple max values.
example of input:
A=[4 5 9 9]
how can i know the indices of those 9's?
0 个评论
采纳的回答
  Wayne King
    
      
 2013-10-1
        
      编辑:Wayne King
    
      
 2013-10-1
  
      One way:
A = [4 5 9 9];
maxval = max(A);
lia = ismember(A,maxval);
idx = find(lia);
or shorter
maxval = max(A);
idx = find(A == maxval);
更多回答(0 个)
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Operators and Elementary Operations 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


