Number of maximum values and maximum values in each column
3 ビュー (過去 30 日間)
古いコメントを表示
I would like to get the no of maximum values for each column. i am using a 5*4 matrix A=
2 3 7 7 7,
5 8 8 8 1,
5 6 8 1 2,
2 1 8 1 4
And i expect an answer, i.e
noofmaximumvalueineachcolumn= 2 1 3 2 1
I am using a code
noofmaximumvalueineachcolumn=sum(A==max(A))
Which works only for a single row matrix.And it shows an error 'matrix dimensions must agree'. what should i do
0 件のコメント
採用された回答
James Tursa
2015 年 5 月 5 日
編集済み: James Tursa
2015 年 5 月 5 日
sum(bsxfun(@eq,A,max(A)))
But for your example I get 2 1 3 1 1, not 2 1 3 2 1
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!