defaultleakyintfire.m

来自「显著区域检测。求的图像中感兴趣区域的位置」· M 代码 · 共 34 行

M
34
字号
% defaultLeakyIntFire - creates a default LIF neuron.%% LIF = defaultLeakyIntFire%    Creates an integrate and fire neuron data structure with%    default values.%% See also initializeWTA, evolveLeakyIntFire, dataStructures.% This file is part of the SaliencyToolbox - Copyright (C) 2006-2007% by Dirk B. Walther and the California Institute of Technology.% See the enclosed LICENSE.TXT document for the license agreement. % More information about this project is available at: % http://www.saliencytoolbox.net% all in SI units!!!function LIF = defaultLeakyIntFireLIF.timeStep = 0.0001; % secondsLIF.Eleak = 0;         % VoltsLIF.Eexc = 100e-3;     % VoltsLIF.Einh = -20e-3;     % VoltsLIF.Gleak = 1e-8;      % SiemensLIF.Gexc = 0;          % SiemensLIF.Ginh = 0;          % SiemensLIF.GinhDecay = 1;     % SiemensLIF.Ginput = 5e-8;     % SiemensLIF.Vthresh = 0.001;   % VoltsLIF.C = 1e-9;          % FaradLIF.time = 0;          % secondsLIF.V = 0;             % VoltsLIF.I = 0;             % AmpereLIF.DoesFire = 1;      % binary

⌨️ 快捷键说明

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