The minimum value of a matrix array and its index
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MOHAMED ABDULAZIM
el 14 de Nov. de 2020
Comentada: MOHAMED ABDULAZIM
el 20 de Nov. de 2020
Hello everybody,
I want to get a single minimum value of a matrix and know its index.What shold I do?
Thank you very much
0 comentarios
Respuesta aceptada
Setsuna Yuuki.
el 14 de Nov. de 2020
Editada: Setsuna Yuuki.
el 15 de Nov. de 2020
A = rand(1,5); %example matrix
[mini,index] = min(A) %mini= minimum value, index = index of minimum value
or
A = rand(5) %example 5x5 matrix
[minRow,indexRow]=min(A)
[minCol,indexCol]=min(minRow)
index = [indexRow(indexCol) indexCol] %minimum value o 5x5 matrix (row index, column index)
A = rand(5)
[M,I] = min(A(:));
[I_row, I_col] = ind2sub(size(A),I);
index = [I_row I_col]
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!