Sorting maximum value array by same date and time
이전 댓글 표시
I have an array of very large size 708273*3,the first and second column representing time and date respectively. Each time and date have many values. I need to find out maximum value from that. I have no idea with how to short those value from excel. Sample data file name "test1".
Any help will be highly appreciated.
With best regards,
Somnath
답변 (1개)
Ameer Hamza
2020년 5월 28일
Try this
T = readtable('test1.xlsx');
grps = findgroups(T.Time, T.Date);
max_vals = splitapply(@max, T.Value, grps);
T.MaximumValue = max_vals(grps);
writetable(T(:,'MaximumValue'), 'test1.xlsx', 'Range', 'D1')
댓글 수: 24
SOMNATH MAHATO
2020년 5월 28일
Ameer Hamza
2020년 5월 28일
What is the error?
SOMNATH MAHATO
2020년 5월 28일
Ameer Hamza
2020년 5월 28일
When I run this code, I get following values in the excel file

SOMNATH MAHATO
2020년 5월 28일
SOMNATH MAHATO
2020년 5월 28일
Ameer Hamza
2020년 5월 28일
In MATLAB, the file name must not contain spaces. Remove the spaces from the name of the script and the use green button in the toolbar to run the code.
SOMNATH MAHATO
2020년 5월 28일
Ameer Hamza
2020년 5월 28일
You haven't changed the name of your script. Change it from "maximum elevaltion angle short.m" to something else, and it should not have spaces in its name.
SOMNATH MAHATO
2020년 5월 28일
Ameer Hamza
2020년 5월 28일
Which MATLAB version are you using?
SOMNATH MAHATO
2020년 5월 28일
SOMNATH MAHATO
2020년 5월 28일
Ameer Hamza
2020년 5월 28일
Try this
T = readtable('test2.xlsx');
temp = num2str(T.Time, 16);
temp = mat2cell(temp, ones(size(temp,1),1), size(temp,2));
[~, ~, grps] = unique(strcat(temp, T.Date));
max_vals = splitapply(@max, T.Value, grps);
T.MaximumValue = max_vals(grps);
writetable(T(:,'MaximumValue'), 'test2.xlsx', 'Range', 'D1')
SOMNATH MAHATO
2020년 5월 28일
Ameer Hamza
2020년 5월 28일
Try this
T = readtable('test2.xlsx');
temp = num2str(T.Time, 16);
temp = mat2cell(temp, ones(size(temp,1),1), size(temp,2));
[~, ~, grps] = unique(strcat(temp, T.Date));
u_grps = unique(grps);
max_vals = zeros(numel(u_grps), 1);
for i=1:numel(u_grps)
max_vals(i) = max(T.Value(grps==u_grps(i)));
end
T.MaximumValue = max_vals(grps);
writetable(T(:,'MaximumValue'), 'test2.xlsx', 'Range', 'D1')
SOMNATH MAHATO
2020년 5월 28일
Ameer Hamza
2020년 5월 28일
You may need to close the excel file before running this code.
SOMNATH MAHATO
2020년 5월 28일
Ameer Hamza
2020년 5월 28일
Try this. You may need to verify if the output is correct
T = readtable('test4.xlsx');
T = table2cell(T(:,1:3));
temp = num2str([T{:,1}].', 16);
temp = mat2cell(temp, ones(size(temp,1),1), size(temp,2));
[~, ~, grps] = unique(strcat(temp, T(:,2)));
u_grps = unique(grps);
max_vals = zeros(numel(u_grps), 1);
for i=1:numel(u_grps)
max_vals(i) = max([T{grps==u_grps(i), 3}]);
end
T = table(max_vals(grps), 'VariableNames', {'MaximumValue'});
writetable(T(:,'MaximumValue'), 'test4.xlsx', 'Range', 'D1')
SOMNATH MAHATO
2020년 5월 28일
SOMNATH MAHATO
2020년 5월 28일
Ameer Hamza
2020년 5월 28일
Yes, it seems possible, but the first column of the excel file is in some custom format, which is not recognized by MATLAB. You may first need to change the data type of the first column in Excel and then follow the code in my comment to only save each maximum value once.
SOMNATH MAHATO
2020년 5월 28일
카테고리
도움말 센터 및 File Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!