分析程序,analysis program
1)analysis program分析程序
1.The program design of multi-layer keyboard in intelligent instruments are illuminated through introducing keyboard status transfer diagram,keyboard program status table,status input address pointer table and analysis program status table.复杂智能仪表的功能丰富、参数繁多,经常用状态分析法来分析设计键盘程序,文中通过实例介绍键盘状态转移图、键盘程序状态表、状态入口地址指针表和分析程序状态表的设计来具体说明智能仪表中多层次键盘程序设计。
英文短句/例句

1.parser generator分析程序的生成程序
2.program instruction frequency analyzer程序指令频度分析程序
3.differential analyzer replacement微分分析程序代替语言
4.PARSEC (PARSer and Extensible Compiler)分析程序和可扩充的编译程序
5.bounded context parser限界上下文分析程序
6.navigation equipment capability analysis programme导航设备能力分析程序
7.Procedure for fault tree analysisGB/T7829-1987故障树分析程序
8.fuel rod analysis program steady state燃料棒分析程序 稳态
9.error recovery in bottom-up parsers自底向上分析程序纠错
10.analog recording dynamic analyzer模拟记录动态分析程序
11.ced statistical analysis program (ASTAP)高级统计分析程序语言
12.electronic circuit analysis program (ECAP)电子线路分析程序语言
13.interactive survey analysis package交互式鉴定分析程序
14.mixed-strategy precedence parser混合策略优先分析程序
15.error recovery in top-down parsers自顶向下分析程序纠错
16.top-down fast-back parser自顶向下快速分析程序
17.semantic grammar parsers语义型语法分析程序
18.It cerse the parser to parse an np.它调用分析程序分析一个名词短语。
相关短句/例句

analysis procedure分析程序
1.The analysis procedures of different coating systems are briefly di scussed.简要分析了不同涂料体系分析程序,说明了每种涂料剖析体系中应该注意的事项。
2.In audit work,you can get twice the result with half the effort when you make good use of analysis procedure.分析程序是会计报表审计中的一种十分重要审计程序与技术方法。
3)program analysis程序分析
1.Transformation-based Program Analysis Technology and Its Application;基于转换的程序分析技术的研究与应用
2.Research on model-driven testing of communication software using program analysis基于程序分析的通信软件模型驱动测试研究
3.Methods and skills using timing sequence diagram to proceed with PLC programming and program analysis were introduced,particularly the drawing of timing sequence and programming procedure in light with design requirement,and using timing sequence to know the procedure and analysis of programming.讲述利用时序图进行PLC编程和程序分析的方法和技巧。
4)Procedure Analysis程序分析
1.By using the procedure analysis method to the left and right crankshaft manufacturing processes,the assembly process,and layout system,redundant processes are eliminated and its layout is redesigned.用工艺程序分析方法对左、右曲轴及总成的工艺流程进行了分析,删除了左、右曲轴加工完毕后的多余清洗工序;用制造流程程序分析方法对左、右曲轴及总成的制造过程进行了分析,并结合布置和经路分析,得知曲轴制造过程中搬运路线较长;按照工艺流程来重新布置加工设备,可以使左、右曲轴加工路线分别缩短44。
2.This paper puts forward the optimization method of production logistics,which is based on procedure analysis of classical industrial engineering and Flexsim simulation,and then the production logistics of HF machinery factory is analyzed and optimized by this method.提出了一种经典工业工程的程序分析方法与Flexsim仿真相结合的生产物流优化方法。
5)program analyzer程序分析程序
6)analyzer[英]['?n?,laiz?][美]['?n?,la?z?]分析程序的程序
延伸阅读

通用语法分析程序  综合不同语法分析技术的形式特征并建立统一的数据结构,以模拟各种自然语言处理技术的实验性软件支援系统,又称通用语法处理程序,英文缩写 GSP,它是1973年R.卡普兰为了研究语法分析和响应生成的需要提出的。    图表(chart)是通用语法处理程序的核心部分,用来表示语法和输入语句的一种单一的数据结构。图表实质上是语法树的一种修正形式。在语法树中每一条有向弧都代表弧线射出节点和弧线进入节点之间的"父子"关系。如果从一个节点射出若干条弧线分别通向不同的子节点,那么这些子节点自左至右地形成一种"兄弟"关系。但是在语法树中,节点之间的父子关系是用有向弧显式表出的,而兄弟关系只是一种隐含关系,并没有用弧线连接。从每一语法树构造其对应的图表须遵循两条规则:①将所有表示父子关系的弧线删除,但保留父节点到其长子节点的弧线,同时将所有兄弟节点用有向弧从兄到弟地(即从左到右方向)连接起来;②节点与弧线标号互换,原来的节点标号变成了弧线标号,原来弧线没有标号,现在则是节点没有标号。图1是名词短语的语法树及其对应的分析图表。     用图表还可以有效地表示"森林"──由若干棵不连的树组成的有序集合。图2表示由名词短语和动词的语法树形成的森林及其对应的图表。图3表明用图表还可以简明有效地表示词或短语的多义现象(称为歧义性)。通用语法处理程序除了建立图表分析技术外,还在递归、回溯和指针移动等方面有较完善的控制策略。系统还有程序协同功能,各程序(过程)能挂起暂停或继续运行。图表是表示自然语言句法的适用数据结构,运用图表技术有利于将语法中较小组成部分集结为较大组成部分以便分析,因而在自然语言处理系统的研制中受到重视。    参考书目   R.Rustin,ed.,Natural Language Processing,Algorithmics Press, New York,1973.