资源简介

elm极限学习机预测风速 预测精度高能够形成完成的预测风速

资源截图

代码片段和文件信息

clc;
clear all;
load exnet;

out=sim(netxx);
out=out*(v2-v1)+v1;
yy=yy*(v2-v1)+v1;
figure(1)
t=70:1:80;
outt=out(t)
plot(outt‘--‘);
hold on;
t=70:1:80;
yy=yy(t)
plot(yy)
xlabel(‘时间 s‘);ylabel(‘风速 米/s‘);
legend(‘虚线:预测数据曲线‘‘实线:实际数据曲线‘);
figure(2)
subplot(212);plot(outt)
xlabel(‘时间 s‘);ylabel(‘预测曲线 米/s‘);
subplot(211);plot(yy)
xlabel(‘时间 s‘);ylabel(‘实际曲线 米/s‘);
len=length(out);
for i=1:11
  error(i)=outt(i)-yy(i)
end
figure(3)
plot(1:11error);
xlabel(‘时间 s‘);ylabel(‘预测值与实际值的误差 米/s‘);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        571  2015-10-21 09:42  ELM\elman1.m

     文件        624  2015-05-20 19:51  ELM\elmpredict.m

     文件        864  2015-05-20 19:51  ELM\elmtrain.m

     文件    7886668  2015-10-20 20:23  ELM\exnet.mat

     文件        837  2015-05-20 22:32  ELM\Qu.m

     文件       1110  2015-05-20 19:50  ELM\Queue.m

     文件       8122  2015-10-20 20:13  ELM\Untitled.m

     文件        571  2015-05-24 15:21  ELM\Untitled1.asv

     文件        571  2015-05-24 15:22  ELM\Untitled1.m

     目录          0  2016-11-21 10:53  ELM

----------- ---------  ---------- -----  ----

              7899938                    10


评论

共有 条评论