フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

how to find the row and the column location in a matrix?

1 回表示 (過去 30 日間)
bsd
bsd 2011 年 7 月 27 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Dear sir/madam,
I used the functions max(X,[],1),max(X,[],2). These give the maximum values along each column and each row respectively. Other than the maximum value, I also need the row location and the column location of this maximum value. How could this be done? Looking forward to hearing from you soon.
Thanking you, BSD

回答 (1 件)

Jan
Jan 2011 年 7 月 27 日
If you look at "help max", you find this:
[value, index] = max(rand(10), [], 1);
[value, index] = max(rand(10), [], 2);

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by