|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
calcperf
Calculate network outputs, signals, and performance
Syntax[perf,El,Ac,N,BZ,IWZ,LWZ]=calcperf(net,X,Pd,Tl,Ai,Q,TS)
DescriptionThis function calculates the outputs of each layer in response to a networks delayed inputs and initial layer delay conditions.
[perf,El,Ac,N,LWZ,IWZ,BZ] = calcperf(net,X,Pd,Tl,Ai,Q,TS) takes,
net -- Neural network
X -- Network weight and bias values in a single vector
Pd -- Delayed inputs
Tl -- Layer targets
Ai -- Initial layer delay conditions
Q -- Concurrent size
TS -- Time steps and returns,
perf -- Network performance
El -- Layer errors
Ac -- Combined layer outputs = [Ai, calculated layer outputs]
N -- Net inputs
LWZ -- Weighted layer outputs
IWZ -- Weighted inputs
BZ -- Concurrent biases
这个是matlab帮助里面的关于calcperf函数的说明,我现在不清楚他们的参数的含义。我理解有的参数的结果是重复的,但是在程序运行的时候我看到程序运行的结果并不都相同,只有N和AC的其中有一个值矩阵是相同的。请那位高手帮我解答一下各个参数都是什么含义。我现在在作毕业设计,请那位帮帮忙,谢谢! |
|