get_wcfnet_a_snn.m

来自「神经网络的工具箱, 神经网络的工具箱,」· M 代码 · 共 20 行

M
20
字号
function a = get_wcfnet_a_snn(net)%GET_WCFNET_A_SNN get output variable weights for a network with cost%                 function wcf_snn.%% Syntax%%   a = get_wcfnet_a_snn(net)%%         net - net_struct with cost function wcf_snn.%         a   - [NL x 1] matrix of output variable weights.%%  (NL = #outputs)%if ~strcmp(get_costfcn_name_snn(get_net_costfcn_snn(net)), 'wcf_snn')   error('Cost function of net is not wcf_snn');enda = get_wcf_a_snn(get_net_costfcn_snn(net));

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?