how to calculate hourly averages?
I convertued my file to a csv, then used the following code to try and get hourly averages:
writematrix(NTU,’M.csv’);
T1 = readtable(‘M.csv’);
TT1 = table2timetable(T1,’RowTimes’,NTU);
TT1 = retime(TT1, ‘hourly’,’mean’);
Am I using table2timetable wrong?I convertued my file to a csv, then used the following code to try and get hourly averages:
writematrix(NTU,’M.csv’);
T1 = readtable(‘M.csv’);
TT1 = table2timetable(T1,’RowTimes’,NTU);
TT1 = retime(TT1, ‘hourly’,’mean’);
Am I using table2timetable wrong? I convertued my file to a csv, then used the following code to try and get hourly averages:
writematrix(NTU,’M.csv’);
T1 = readtable(‘M.csv’);
TT1 = table2timetable(T1,’RowTimes’,NTU);
TT1 = retime(TT1, ‘hourly’,’mean’);
Am I using table2timetable wrong? hourly, averages MATLAB Answers — New Questions