line and column of the minimun element of a matrix

1 次查看(过去 30 天)
how do i find the position (line and column of the minimun element of a matrix)
i have a matrix
m=
[5 1 -400;
-6 100 -6;
2 5 25];
how can i get matlab to give me the position of -400 ? line 1 column 3

采纳的回答

Jan
Jan 2021-1-16
编辑:Jan 2021-1-16
m = [5 1 -400; ...
-6 100 -6;
2 5 25];
[~, ind] = min(m(:));
[row, col] = ind2sub(size(m), ind)
Or:
[v, ind1] = min(m, [], 1); % Along 1st dimension
[~, col] = min(v, [], 2); % Along 2nd dimension
row = ind1(col)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Test and Measurement 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by