⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 count_st.m

📁 一个matlab的将军模型
💻 M
字号:

function [num] = count_st

global_var;

j=0;
k=0;
for i=1:length(GLOBAL_TRANSITION)
    lfs = GLOBAL_XSYS2AUTO_MAP{i}(1);
    test_lfs = strcmp(lfs,'null_event')|strcmp(lfs,'terminal')|...
          	strcmp(lfs,'indeterminate')|strcmp(lfs,'out_of_bound')|...
             strcmp(lfs,'time_limit');
    if ~test_lfs
        j=j+1;
    else
        k = k+1;
    end
end
num = [j k];
return

⌨️ 快捷键说明

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