フィルターのクリア

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 Center および File ExchangeImages についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by