MATLAB 如何生成等时间序列
MATLAB 如何生成等时间序列s_time = [2017 1 1 12 00 00]; % YYYY MM DD hh mm ssf_time = [2017 1 1 12 10 00];inter_t = 5; % s% 将时间间隔转换成一天中的所占比例dt = inter_t/3600/24;t0 = datetime(s_time);ts = datetime(f_time);t = t0:dt:ts;datestr(t)...