基于sim RBF网络的非线性滤波

来源:互联网 发布:新三板交易软件 编辑:程序博客网 时间:2024/05/23 18:22

http://www.zdh1909.com/html/matlab/9611.html基于sim RBF网络的非线性滤波 文章来源:不详 作者:佚名 该文章讲述了基于sim RBF网络的非线性滤波.设置参数P=-1:0.1:1T=[-0.9602 -0.5770 -0.0729 0.3771 0.6405 0.6600 0.4609 0.1336 -0.2013 -0.4344 -0.5000 -.03930 -0.1647 0.0988 0.3027 0.3960 0.3449 0.1816 -0.0312 -0.2189 -0.3201]for i=1:5 net=newrbe(P,T,i); y(i,:)=sim(net,P);end%绘制误差曲线plot(1:21,y(1,:)-T);hold on;plot(1:21,y(2,:)-T,'+');hold on;plot(1:21,y(3,:)-T,'.');hold on;plot(1:21,y(4,:)-T,'g*');hold on;plot(1:21,y(5,:)-T,'r--');hold off;%限制坐标起点和终点 axis([0 25 -0.5 0.5]);

原创粉丝点击