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

📄 build_poly_ap.m

📁 CheckMate is a MATLAB-based tool for modeling, simulating and investigating properties of hybrid dyn
💻 M
字号:
function ap = build_poly_ap(apname)global GLOBAL_PIHA GLOBAL_TRANSITION GLOBAL_AUTO2XSYS_MAP% build region for apname if it is a new atomic propositionN = length(GLOBAL_TRANSITION);NL = length(GLOBAL_PIHA.Locations);switch apname  case 'null_event',    ap = region(N,(0:NL-1) + GLOBAL_AUTO2XSYS_MAP.ne_start);  case 'time_limit',    ap = region(N,(0:NL-1) + GLOBAL_AUTO2XSYS_MAP.tl_start);  case 'out_of_bound',    ap = region(N,(0:NL-1) + GLOBAL_AUTO2XSYS_MAP.oob_start);  case 'indeterminate',    ap = region(N,(0:NL-1) + GLOBAL_AUTO2XSYS_MAP.ind_start);  otherwise,    error(['Invalid atomic proposition name ''' apname '''.'])end% -----------------------------------------------------------------------------

⌨️ 快捷键说明

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