min value of each row with corresponding column
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
M
el 1 de Nov. de 2023
Respondida: Dyuman Joshi
el 1 de Nov. de 2023
How to do the following?
If there are three columns and I want to get the min value of each row and I want to know from which column was this value
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 1 de Nov. de 2023
y = magic(3)
%Utilize the functionality of min()
[m,idx] = min(y, [], 2)
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!