level 1
代码
[num]=xlsread('E:\\结果.xls',2,'B44:J44') % 读取时间相关的数值
[ACF] = autocorr(num)
bar(ACF,0.6)
title('The Autocorrelation of Thailand from 201310 to 201406')%柱形图的标题
axis([0,10,-0.7,1.2])%x,y轴的取值
xlabel('Logs')
ylabel('Autocorrelation')
2015年12月11日 04点12分
1