need help convertig 10 min data interval to 1 minute data interval
2 views (last 30 days)
Show older comments
Hi I have 10 min data interval for windpsedd and ambient temperature , I want to convert it to 1 minute data interval starting from 12:00:00 am all th eway till 11:59 pm . someone help me , how should i proceed with it . Thanks in advance
2 Comments
VBBV
on 23 Sep 2020
Edited: VBBV
on 23 Sep 2020
% if true
% code
% end
Temp = []; %temperature data 10 min
WS = []; %wind speed data 10 min
time = 00:00:00:minutes(1):24:00:00;
Time = 00:00:00:minutes(10):24:00:00;
temp = interp1(Time,Temp,time);
ws = interp1(Time,WS,time)
If you have Time in am, pm format use datestr
% if true
% code
% end
Time = datestr(Time,'HH:MM:SS');% to 24 hr equivalent
Answers (2)
See Also
Categories
Find more on Timetables in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!