Calculate maximums and its indices

1 vue (au cours des 30 derniers jours)
Happy Bear
Happy Bear le 2 Avr 2020
Modifié(e) : Ameer Hamza le 2 Avr 2020
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.

Réponse acceptée

Ameer Hamza
Ameer Hamza le 2 Avr 2020
Modifié(e) : Ameer Hamza le 2 Avr 2020
x = rand(6000, 118); % you input matrix
[val, ind] = max(x, [], 1);

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by