how to find the minimum value of the wholw matrix?

180 visualizaciones (últimos 30 días)
Shubham Mohan Tatpalliwar
Shubham Mohan Tatpalliwar el 10 de Oct. de 2018
Respondida: Stephen23 el 10 de Oct. de 2018
if i have a matrix for example
if true
% code
A[52 36 85 24 96; 25 25 36 74 65 ; 82 44 55 456 1326 43; 645 684 54 51 40; 54 35 354 45 52]
end
how to find out the minimumvalue of the whole matrix if i dont know the row and column of the min value.

Respuesta aceptada

madhan ravi
madhan ravi el 10 de Oct. de 2018
Editada: madhan ravi el 10 de Oct. de 2018
A=[52 36 85 24 96;25 25 36 74 65 ; 82 44 55 456 1326 ; 645 684 54 51 40; 54 35 354 45 52]
min(min(A))

Más respuestas (1)

Stephen23
Stephen23 el 10 de Oct. de 2018
This works for any size array:
min(A(:))

Categorías

Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by