outputly.m
来自「模糊神经网络实现函数逼近与分类」· M 代码 · 共 10 行
M
10 行
function y=outputly(a0,A,y1)% y1 is k*1 vector of the hidden layer (k is the number of the hidden layer).% a0 is the ny*1 bias vector (ny is the output vector y's dimension) .% A is the ny*k matrix of the weight.% y is the output vector of ny*1temp=A*y1 ;y=a0+temp;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?