原来是小飞 发表于 2014-6-7 16:13

混沌多步预报问题

在论坛上下了这个代码,可是有些地方没看懂,希望有人帮忙解释下,不胜感激。代码如下:%Chen's系统多步预报的主程序
clear all

fid=fopen('chen.txt','r');
a=fread(fid);
b=char(a');
sj=str2num(b);%数据读取完毕
fclose(fid);

roll=sj(:,2);%取X数据
oldroll=roll;
AverRoll=roll-mean(roll);
roll=AverRoll;
mtbp=70;
taow=mtbp;
deltaT=0.001;
tao = 10;
taowdivtao=round(taow/tao);
d=8;%taowdivtao+1;
prestep=5000;
N = length(roll)-prestep;
MaxStep = 2000;
Step = 1 : 1 : MaxStep;
= FunctionChaosPredict(roll(1:N),N,mtbp,deltaT,tao,d,MaxStep);%调用AOLMM进行多步预报
subplot(2,1,1);plot(roll(1:9000+MaxStep)+mean(roll));
hold on;
subplot(2,1,1);
plot(Step + N,PredictedData+mean(oldroll),'r:');
hold on;
ylabel('Chen''s System');
legend('Original','Predict');
axis();
subplot(2,1,2);
plot(Step + N,PredictedData+mean(oldroll),'r:');
axis();
hold on;
subplot(2,1,2);
plot(Step + N,oldroll(Step + N),'b-');
ylabel('Chen''s System');
legend('Predict','Original');不懂得地方:‘’prestep=5000;‘’这个值是怎么确定的,我比较了一下,是减去后5000个数据,想请教下这个值如确定

淼海淼 发表于 2014-6-7 20:13

{:{39}:} 起等高人解答我学习一下新人加入








武尊道 maonixinshu.com/xs/0/570/ 正文 第三十章 破阵 maonixinshu.com/xs/0/570/331785.html 最佳反派 maonixinshu.com/xs/0/567/ 章节目录 第五十六章 骑士不死于徒手的游戏版本 maonixinshu.com/xs/0/567/330828.html 大宋的智慧 maonixinshu.com/xs/0/80/ 第三卷锦官城,春色浓 第二十二章白玉 maonixinshu.com/xs/0/80/323466.html 造化之门 maonixinshu.com/xs/0/574/ 《造化之门》 新书相关 老五原话-洛影 maonixinshu.com/xs/0/574/506266.html 武尊道 maonixinshu.com/xs/0/570/ 正文 第四章 好气势 maonixinshu.com/xs/0/570/331759.html 戮仙 maonixinshu.com/xs/0/561/ 正文 第九章 十日 maonixinshu.com/xs/0/561/323863.html 刀笔吏 maonixinshu.com/xs/0/557/ 章节目录 第12章 流外入流 maonixinshu.com/xs/0/557/322339.html 刀笔吏 maonixinshu.com/xs/0/557/ 章节目录 第20章 心有所属 maonixinshu.com/xs/0/557/322347.html 最强武神 maonixinshu.com/xs/0/571/ 正文 022.古怪石碑 maonixinshu.com/xs/0/571/331879.html 神秘之旅 maonixinshu.com/xs/0/58/99 七月门 1 maonixinshu.com/xs/0/58/19686.html择天记maonixinshu.com

Kevin_HIT 发表于 2014-10-9 21:13

学习了学习了

Kevin_HIT 发表于 2014-10-13 19:49

nice   nice   nice
页: [1]
查看完整版本: 混沌多步预报问题