Réponse acceptée

Walter Roberson
Walter Roberson le 5 Fév 2013
Modifié(e) : Walter Roberson le 5 Fév 2013

1 vote

[minval, minpos] = min(YourArray(:));
[minrow, mincol] = ind2sub(size(YourArray), minpos);
The above if you want to know the row and column as well as the value. If you just want the value then
minval = min(YourArray(:));

Plus de réponses (1)

James Tursa
James Tursa le 5 Fév 2013

1 vote

Not exactly sure what you want, but here is code to find the minimum value:
x = rand(2,2);
m = min(x(:));

Catégories

En savoir plus sur Matrices and Arrays dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by