Could anyone help me out in finding frequency of data using excel file and later finding the row having maximum frequency?
2 ビュー (過去 30 日間)
古いコメントを表示
From the range column of excel file attatched, I need to sum up each row ( columns b to h) and store the sum value in a matrix.
After I get a matrix of sum values of each row. Further the max value of that matrix is needed to be found and corresponding range to which it belongs. Could anyone help me out how I can achieve this using matlab code. The excel file is attatched.
0 件のコメント
採用された回答
Kevin Holly
2022 年 11 月 6 日
t = readtable('frequency.xlsx')
t.Sum = sum(table2array(t(:,2:end)),2)
[maxvalue, Index] = max(t.Sum)
t(Index,[1 end])
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!