代码搜索:
找到约 10,000 项符合「」的源代码
代码结果 10,000
www.eeworm.com/read/392194/8358646
m newcell.m
function c=NewCell(n,ActiveFunction)
%创建一个神经元
c.Weight=rand(1,n); %权值
c.ActiveFunction=ActiveFunction; %激活函数
c.Theta=0; %阈值
c.Out=0; %神经元输出
c.Delta=0;
www.eeworm.com/read/192685/8358647
html 19357.html
Re: 抉择------不是VB的问题,但请各位发表意见
Re: 抉择------不是VB的问题,但请各位发表意见
www.eeworm.com/read/392194/8358649
m netvalue.m
function Net=NetValue(Net,x)
%计算网络的值
for j=1:size(x,2)
Net{1}{j}=CellValue(Net{1}{j},x); %计算第一层神经元的值
end
%计算第二层以及之后层神经元的值
for i=2:length(Net)
x=zeros(size(x,1),length(Net{i-1}));
www.eeworm.com/read/292398/8358651
dat errortc130.dat
错误信息: 'xxx' is assigned a value which is never used
中文注释: 给 xxx 赋了值,但未用过
www.eeworm.com/read/392194/8358652
m trapezoidal.m
function y=Trapezoidal(x)
%阶梯形函数
% 当x0.5时y=1
y=zeros(size(x));
y(x>0.5)=1;
www.eeworm.com/read/192685/8358653
html 4755.html
请参考先前(上面)ActiveX Document的回答
请参考先前(上面)ActiveX Document的回答
www.eeworm.com/read/392194/8358655
m bp.m
X=[0.5152 0.8173 1; 0.8173 1 0.7308]
Y=[0.73 0.139; 0.1 0.3]
eta=0.3;
Net=NewNet(3,[3 4 2],'Sigmoid');
Net=NetValue(Net,X);
Net{end}{1}.Out
Net{end}{2}.Out
n=0;
Er=0;
while(1)
Net=NetValue