Borrar filtros
Borrar filtros

detect row and column

1 visualización (últimos 30 días)
Abdul
Abdul el 20 de Mzo. de 2012
how to know value for minimum and maximum of row and column

Respuesta aceptada

Wayne King
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
Wayne King
Wayne King el 20 de Mzo. de 2012
As the cyclist says, these syntaxes are documented

Iniciar sesión para comentar.

Más respuestas (1)

the cyclist
the cyclist el 20 de Mzo. de 2012
Use the min() and max() functions.
More details available by reading "doc min" and "doc max".

Categorías

Más información sobre Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by