说我有一个矩阵
A= [1 2 3
2 5 5
4 6 2]
我想从特定范围的列中找到最大值的索引,由向量A_index =[1 0 1]
给出,表示从第1列和第3列中找到最大值。该最大值为5。如何找到其索引,即row = 2 column =3。请注意,第2列中也出现了5,但我不希望它
如果我使用普通的“ find
”,则不会得到正确的解决方案
答案 0 :(得分:2)
用A
替换NaN
中不需要的列的元素。然后使用max
查找最大元素的线性索引。最后,使用ind2sub
将线性索引转换为行和列下标。
A_index(A_index==0)=NaN; %Replacing 0s with NaNs (needed when A has non-positive elements)
A = bsxfun(@times, A, A_index); %With this, zeros (now NaNs) of A won't affect 'max'
[~ , ind] = max(A(:)); %finding the linear index of the maximum value
[r, c] = ind2sub(size(A),ind); %converting the linear index to row and column subscripts
在≥R2016b中,第二行可以用隐式扩展编写为:
A = A.*A_index;
最后两行也可以写成:
[r,c] = find(A==max(A(:)));
以您发现的更好为准。