3

这是示例:

我有以下矩阵:

4 0 3
5 2 6
9 4 8

现在,我想找到两个最小值,以及它们每行的索引。所以结果是:

row1: 0 , position (1,2) and 3, position (1,3)
row2...
row3....

好吧,我使用了很多 for 循环,而且它非常复杂。那么有什么方法可以使用 MATLAB 函数来实现我的目标吗?

我试过了,但没有结果:

C=min(my_matrix,[],2)
[C(1),I] = MIN(my_matrix(1,:)) &find the position of the minimum value in row 1??
4

3 回答 3

4

您可以按升序对矩阵的每一行进行排序,然后为每行选择前两个索引,如下所示:

[A_sorted, I] = sort(A, 2);
val = A_sorted(:, 1:2)
idx = I(:, 1:2)

现在val应该包含每行中前两个最小元素的值,并且idx应该包含它们的列号。

如果您想以格式化的方式打印屏幕上的所有内容(如您的问题所示),您可以使用全能fprintf命令:

rows = (1:size(A, 1))';
fprintf('row %d: %d, position (%d, %d) and %d, position (%d, %d)\n', ...
    [rows - 1, val(:, 1), rows, idx(:, 1), val(:, 2), rows, idx(:, 2)]')

例子

A = [4, 0, 3; 5, 2, 6; 9, 4, 8];

%// Find two smallest values in each row and their positions
[A_sorted, I] = sort(A, 2);
val = A_sorted(:, 1:2)
idx = I(:, 1:2)

%// Print the result
rows = (1:size(A, 1))';
fprintf('row %d: %d, position (%d, %d) and %d, position (%d, %d)\n', ...
    [rows - 1, val(:, 1), rows, idx(:, 1), val(:, 2), rows, idx(:, 2)]')

结果是:

val =
     0     3
     2     5
     4     8

idx =
     2     3
     2     1
     2     3

格式化的输出是:

row 0: 0, position (1, 2) and 3, position (1, 3)
row 1: 2, position (2, 2) and 5, position (2, 1)
row 2: 4, position (3, 2) and 8, position (3, 3)
于 2013-01-09T17:32:32.443 回答
2

您可以使用sort.

[A_sorted, idx] = sort(A,2); % specify that you want to sort along rows instead of columns

的列idx包含每行的最小值A,第二列具有第二个最小值的索引。

最小值可以从A_sorted

于 2013-01-09T17:03:10.967 回答
1

您可以执行以下操作,A您的矩阵在哪里。

[min1, sub1] = min(A, [], 2);  % Gets the min element of each row
rowVec = [1:size(A,1)]';       % A column vector of row numbers to match sub1
ind1 = sub2ind(size(A), rowVec, sub1)  % Gets indices of matrix A where mins are
A2 = A;                        % Copy of A
A2(ind1) = NaN;                % Removes min elements of A
[min2, sub2] = min(A2, [], 2); % Gets your second min element of each row

min1将是您的最小值min2向量,每行的第二个最小值向量。它们各自的行索引将在sub1和中sub2

于 2013-01-09T17:09:29.647 回答