说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 条件式监看
1)  conditional watch
条件式监看
2)  condition type of monitoring
条件式监控
3)  watch expression
监看表达式
4)  signboard monitoring
看板式监控
1.
Research on key technologies of signboard monitoring system for project development management
项目研发管理看板式监控系统关键技术
5)  monitoring condition
监控条件
1.
Based upon index system of the structural safety monitoring conditions of industrial buildings practical assessment method is established based upon fuzzy mathematics.
介绍了基于模糊数学的厂房结构安全监控条件的评价方法,指出利用此方法可对厂房结构安全监控条件作出客观评价,以判定厂房是否能够为人的检测活动提供安全适宜的作业空间和环境。
6)  guard condition
监护条件
1.
To analyze the transition,a TES model is proposed here,which is able to describe trigger event and guard condition.
为了分析状态机变迁,提出了TES模型,它可以描述状态机的触发器事件和监护条件等元素,然后将几种复合变迁用Petri网描述,最后给出了一个实例,说明模型之间是语义等价的。
补充资料:如何在NX中使用条件表达式?

你可以在表达式中通过 if/else 结构来建立条件表达式,表达式的具体语法标准可以参考以下标准:


if (expr1) (expr2) else (expr3)


比如说:


Width=if (length<8) (2) Else (3)


其意义是:


如果 length 小于 8, width 的值将等于 2;


如果 length 大于等于 8, width的值将等于3.


你也可以在条件表达式中建立多重的if/else结构. 比如你可以输入一下格式的多重条件表达式
width=if(a<=1)(3) else if(a==2)(5) else if(a>=3)(6) else (10)


其意义是:


如果a小于等于 1, width的值将等于3;如果 a 等于 2, width的值将等于5;如果 a 大于等于 6, width的值将等于6;其它情况下 width的值将等于10你也可以通过嵌套结构来定义符合条件的表达式,表达式的值将受到多重的条件控制.比如说: p3=if(p5==1)(if(p6==0)(0)else(1))else(if(p6==0)(2)else(3))其意义是:如果 p5 等于 1 并且 p6 等于 0, p3 的值将等于0如果p5 等于 1 但是 p6 不等于 0, p3 的值将等于1如果p5 不等于 1 但是 p6 等于 0, p3 的值将等于2其它情况下 p3 的值将等于3

说明:补充资料仅用于学习参考,请勿用于其它任何用途。
参考词条