Calculate maximums and its indices

조회 수: 2 (최근 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 CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by