【Matlab工具箱】REF径向基网络



2016年05月06日    Author:Guofei

文章归类: Matlab    文章编号:

版权声明:本文作者是郭飞。转载随意,但需要标明原文链接,并通知本人
原文链接:https://www.guofei.site/2016/05/06/MatlabToolBoxREF.html


%RBF神经网络,径向基网络
%%
%生成数据
clear;clc;close;
p=-1:0.001:5;
a=sin(p);
plot(p,a);
%%
%训练
eg=1e-3;%误差
sc=100;%步数
net=newrb(p,a,eg,sc);
Y=sim(net,p);

plot(p,a,'*')
hold on
plot(p,Y)
hold off
title('目标向量和输出向量')



您的支持将鼓励我继续创作!