基于均值生成函數(shù)時間序列預(yù)測算法程序

基于均值生成函數(shù)時間序列預(yù)測算法程序

ID:11730089

大?。?6.00 KB

頁數(shù):3頁

時間:2018-07-13

基于均值生成函數(shù)時間序列預(yù)測算法程序_第1頁
基于均值生成函數(shù)時間序列預(yù)測算法程序_第2頁
基于均值生成函數(shù)時間序列預(yù)測算法程序_第3頁
資源描述:

《基于均值生成函數(shù)時間序列預(yù)測算法程序》由會員上傳分享,免費在線閱讀,更多相關(guān)內(nèi)容在教育資源-天天文庫。

1、基于均值生成函數(shù)時間序列預(yù)測算法程序1.predict_fun.m為主程序;2.timeseries.m和seriesexpan.m為調(diào)用的子程序functionima_pre=predict_fun(b,step)%mainprograminvokestimeseries.mandseriesexpan.m%inputparameters:%b-------thetrainingdata(vector);%step----numberofpredictiondata;%outputparameters:%ima_pre---the

2、predictiondata(vector);old_b=b;mean_b=sum(old_b)/length(old_b);std_b=std(old_b);old_b=(old_b-mean_b)/std_b;[f,x]=timeseries(old_b);old_f2=seriesexpan(old_b,step);%f(f<0.0001&f>-0.0001)=f(f<0.0001&f>-0.0001)+eps;R=corrcoef(f);[eigvectoreigroot]=eig(R);eigroot=diag(eigro

3、ot);a=eigroot(end:-1:1);vector=eigvector(:,end:-1:1);Devote=a./sum(a);Devotem=cumsum(Devote);m=find(Devotem>=0.995);m=m(1);V1=f*eigvector';V=V1(:,1:m);%old_b=old_b;old_fai=inv(V'*V)*V'*old_b;eigvector=eigvector(1:m,1:m);fai=eigvector*old_fai;f2=old_f2(:,1:m);predictval

4、ue=f2*fai;ima_pre=std_b*predictvalue+mean_b;1.子函數(shù):timeseries.m%timeseriesprogram%%thisprogramisusedtogeneratemeanvaluematrixf;function[f,x]=timeseries(data)%data--------theinputsequence(vector);%f------meanvaluematrixf;n=length(data);forL=1:n/2??nL=floor(n/L);??fori=1:

5、L??????sum=0;??????forj=1:nL????????sum=sum+data(i+(j-1)*L);????end????x{L,i}=sum/nL;??endendL=n/2;f=zeros(n,L);fori=1:L??rep=floor(n/i);??res=mod(n,i);??b=[x{i,1:i}];b=b';??f(1:rep*i,i)=repmat(b,rep,1);??ifres~=0??????c=rep*i+1:n;??????f(rep*i+1:end,i)=b(1:length(c));

6、??endend接上,seriesexpan.m%seriesexpan.m%theprogramisusedtogeneratethepredictionmatrixf;functionf=seriesexpan(data,step);%data----theinputsequence(vector)%setp----thepredictionnumber;n=length(data);forL=1:n/2??nL=floor(n/L);??fori=1:L??????sum=0;??????forj=1:nL????????su

7、m=sum+data(i+(j-1)*L);????end????x{L,i}=sum/nL;??endendL=n/2;f=zeros(n+step,L);fori=1:L??rep=floor((n+step)/i);??res=mod(n+step,i);??b=[x{i,1:i}];b=b';??f(1:rep*i,i)=repmat(b,rep,1);??ifres~=0??????c=rep*i+1:n+step;??????f(rep*i+1:end,i)=b(1:length(c));??endend

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當(dāng)前文檔最多預(yù)覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學(xué)公式或PPT動畫的文件,查看預(yù)覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權(quán)歸屬用戶,天天文庫負(fù)責(zé)整理代發(fā)布。如果您對本文檔版權(quán)有爭議請及時聯(lián)系客服。
3. 下載前請仔細(xì)閱讀文檔內(nèi)容,確認(rèn)文檔內(nèi)容符合您的需求后進行下載,若出現(xiàn)內(nèi)容與標(biāo)題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡(luò)波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。