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!