📄 outputly.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -