get_wcfnet_e_snn.m
来自「神经网络的工具箱, 神经网络的工具箱,」· M 代码 · 共 23 行
M
23 行
function e = get_wcfnet_e_snn(net)%GET_WCFNET_E_SNN Get output variable error functions for a network with cost% function wcf_snn.%% Syntax%% e = get_wcfnet_e_snn(wcfnet)%% wcfnet - net_struct with cost function wcf_snn.% e - [NL x 1] cell matrix of output variable error functions. % OR % string of output variable error function for all variables. %% (NL = #outputs)%if ~strcmp(get_costfcn_name_snn(get_net_costfcn_snn(net)), 'wcf_snn') error('Cost function of net is not wcf_snn');ende = get_wcf_e_snn(get_net_costfcn_snn(net));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?