detect row and column

1 次查看(过去 30 天)
Abdul
Abdul 2012-3-20
how to know value for minimum and maximum of row and column

采纳的回答

Wayne King
Wayne King 2012-3-20
X = randn(10,5);
min(X,[],1)
min(X,[],2)
max(X,[],1)
max(X,[],2)
  1 个评论
Wayne King
Wayne King 2012-3-20
As the cyclist says, these syntaxes are documented

请先登录,再进行评论。

更多回答(1 个)

the cyclist
the cyclist 2012-3-20
Use the min() and max() functions.
More details available by reading "doc min" and "doc max".

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by