- 积分
 - 190
 
	- 贡献
 -  
 
	- 精华
 
	- 在线时间
 -  小时
 
	- 注册时间
 - 2012-5-29
 
	- 最后登录
 - 1970-1-1
 
 
 
 
 
 
 | 
	
 
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册 
 
 
 
x
 
小波分析一直是非线性时间序列分析的有力工具。本人接触小波分析时间不长。有几个问题想和大家讨论下。 
1. 小波分析可以直接用matlab2012自带的小波分析工具箱做。所以其中的参数设置: 
dt = 1;% 采样周期 (年降水时间序列,采样周期为1?) 
 
pad = 1;%      
dj = 0.25;  %   the spacing between discrete scales. Default is 0.25. 
            %A smaller # will give better scale resolution, but be slower to plot. 
            % 影响着scales 
 
s0 =2*dt; %  the smallest scale of the wavelet.  Default is 2*DT 
j1 =log2(n*dt/s0)/dj;  %the # of scales minus one. Scales range from S0 up to S0*2^(J1*DJ), 
          % to give a total of (J1+1) scales. Default is J1 = (LOG2(N DT/S0))/DJ. 
lag1 = 0.72;   
mother = 'Morlet';% 选择的小波函数 
 
不知道上述是否合理? 
2. 输出参数:[wave,period,scale,coi] = wavelet(sst,dt,pad,dj,s0,j1,mother); 
其中的period 是否就是公式 
 中的平移因子b, 
scale 是所谓的尺度因子a? 
3. 如果知道时间序列的主周期为10, 如何画出主周期=10时,小波系数的时间序列图? 
欢迎交流! 
 
 
 
 |   
 
 
 
 |