detect row and column
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how to know value for minimum and maximum of row and column
0 comentarios
Respuesta aceptada
Wayne King
el 20 de Mzo. de 2012
X = randn(10,5);
min(X,[],1)
min(X,[],2)
max(X,[],1)
max(X,[],2)
1 comentario
Más respuestas (1)
the cyclist
el 20 de Mzo. de 2012
Use the min() and max() functions.
More details available by reading "doc min" and "doc max".
0 comentarios
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!