代码搜索:grnn
找到约 27 项符合「grnn」的源代码
代码结果 27
www.eeworm.com/read/36385/1061870
grnn+
www.eeworm.com/read/380747/9129861
m grnn.m
% 广义回归网络
%
clf;
figure(gcf);
setfsize(300,300);
echo on
clc
P=[1 2 3 4 5 6 7 8];
T=[0 1 2 3 2 1 2 1];
plot(P,T,'.','markersize',20);
axis([0 9 -1 4]);
pause
net=newgrnn(P,T,0.7);
A=si
www.eeworm.com/read/169875/9835291
m grnn.m
% 广义回归网络
%
clf;
figure(gcf);
setfsize(300,300);
echo on
clc
P=[1 2 3 4 5 6 7 8];
T=[0 1 2 3 2 1 2 1];
plot(P,T,'.','markersize',20);
axis([0 9 -1 4]);
pause
net=newgrnn(P,T,0.7);
A=si
www.eeworm.com/read/470206/6914815
m grnn.m
%绘制指数函数曲线
p=-1:0.05:1;
t=exp(-p);
plot(p,t);
grid;
title('exponential function');
xlabel('x');
ylabel('y');
figure;
%建立并训练网络
for i=1:5
net=newgrnn(p,t,i/10);
y(i,:)=sim(net,p);
en
www.eeworm.com/read/240954/13186310
m grnn.m
% 广义回归网络
%
clf;
figure(gcf);
setfsize(300,300);
echo on
clc
P=[1 2 3 4 5 6 7 8];
T=[0 1 2 3 2 1 2 1];
plot(P,T,'.','markersize',20);
axis([0 9 -1 4]);
pause
net=newgrnn(P,T,0.7);
A=si
www.eeworm.com/read/138667/13226453
m grnn.m
%绘制指数函数曲线
p=-1:0.05:1;
t=exp(-p);
plot(p,t);
grid;
title('exponential function');
xlabel('x');
ylabel('y');
figure;
%建立并训练网络
for i=1:5
net=newgrnn(p,t,i/10);
y(i,:)=sim(net,p);
en
www.eeworm.com/read/477078/6745044
m grnn.m
%绘制指数函数曲线
p=-1:0.05:1;
t=exp(-p);
plot(p,t);
grid;
title('exponential function');
xlabel('x');
ylabel('y');
figure;
%建立并训练网络
for i=1:5
net=newgrnn(p,t,i/10);
y(i,:)=sim(net,p);
en
www.eeworm.com/read/406143/11448623
m grnn.m
close all
clf reset
figure(gcf);
echo on
clc
%NEWGRNN-设计广义回归网络
%SIM-对广义回归网络进行仿真
pause
clc
%P是输入矢量,T是目标矢量
P=-1:0.2:1;
T=cos(4*P)-sin(2*P);
%画出待逼近函数的图形
plot(P,T,'+');
pause
clc
%设计两个广义回归
www.eeworm.com/read/153011/12067290
m grnn.m
%绘制指数函数曲线
p=-1:0.05:1;
t=exp(-p);
plot(p,t);
grid;
title('exponential function');
xlabel('x');
ylabel('y');
figure;
%建立并训练网络
for i=1:5
net=newgrnn(p,t,i/10);
y(i,:)=sim(net,p);
en
www.eeworm.com/read/380747/9129828