Calculate maximums and its indices

1 回表示 (過去 30 日間)
Happy Bear
Happy Bear 2020 年 4 月 2 日
編集済み: Ameer Hamza 2020 年 4 月 2 日
Hello,
I have a matrix with 6000 lines and 118 columns (6000 x 118).
How do I calculate the maximum (and its index) of each column?
This means that I want 118 maximuns and 118 indices.

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 4 月 2 日
編集済み: Ameer Hamza 2020 年 4 月 2 日
x = rand(6000, 118); % you input matrix
[val, ind] = max(x, [], 1);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by