counterexists.m
来自「在cdma系統中在下行做功率控制的性能分析」· M 代码 · 共 36 行
M
36 行
function flag = counterexists(name)% COUNTEREXISTS - Test for existence of counter% % FLAG = COUNTEREXISTS(NAME) returns true if the counter exists. If the% optional parameter NAME is omitted, the default 'gccounter' is used.%% The counter state is stored in the matlab preference% 'counter_utility_data'.%% Example:% if counterexists('MyCounter')% counterdelete('MyCounter')% end% checs if the counter 'MyCounter' exists, and deletes it if it does.% %% See also: COUNTERVAL, COUNTERINIT, COUNTERSET, COUNTEREXIST,% COUNTERLIST and COUNTERDELETE %% AUTHOR : J鴊er Hanseg錼d %% $DATE : 05-Apr-2005 15:21:08 $ %% $Revision: 1.00 $ %% DEVELOPED : 7.0.1.24704 (R14) Service Pack 1 %% FILENAME : counterexists.m if nargin == 0 name = 'gccounter';endflag = ispref('counter_utility_data', name);% Created with NEWFCN.m by J鴊er Hanseg錼d % Contact...: jogerh@ifi.uio.no % $Log$ % ===== EOF ====== [counterexists.m] ======
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?