init_netpack_snn.m

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

M
33
字号
function init_netpack_snn(input_string)%INIT_NETPACK_SNN Initialize the SNN Netpack Toolbox.%% INIT_NETPACK_SNN initializes the SNN Netpack Toolbox.%% INIT_NETPACK_SNN('--with_gui') initializes the toolbox and it's% graphical user interface (GUI).%if (nargin < 1)   input_string = '';endWITH_GUI = 0;if (strcmp(input_string, '--with_gui') | strcmp(input_string, '--gui'))   WITH_GUI = 1;endroot = netpackroot;% initialize tools.run(fullfile(root, 'tools', 'init_tools_snn'));% initialize GUI.if (WITH_GUI)   run(fullfile(root, 'gui', 'init_gui_snn'));endfunction netpackroot = netpackroot()[netpackroot, dummy, dummy] = fileparts(which(mfilename));

⌨️ 快捷键说明

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