detect row and column
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how to know value for minimum and maximum of row and column
0 commentaires
Réponse acceptée
Wayne King
le 20 Mar 2012
X = randn(10,5);
min(X,[],1)
min(X,[],2)
max(X,[],1)
max(X,[],2)
1 commentaire
Plus de réponses (1)
the cyclist
le 20 Mar 2012
Use the min() and max() functions.
More details available by reading "doc min" and "doc max".
0 commentaires
Voir également
Catégories
En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!