1)  hang-up key; stop key
停止键
2)  stopping
停止
1.
A definition of stopping of two-parameter processes at the stopping line is given by using the expression of conditional expectation and some invariances of stopping transformation are discussed.
利用条件期望的表达式给出了两指标过程在停线处的停止定义 ,研究了停止变换下的若干不变性 给出了这种停止意义下的局部平方可积强鞅的定义 ,进一步研究了局部平方可积强鞅二次变差的存在性及其停止性质 ,得到了重要的Burkholder -Davis -Gundy型不等式及平方可积强鞅的一个充要条
2.
The present paper presents the definition of the stopping for two-parameter strong martingale and deals with the stopping properties for two-parameter strong martingale.
利用停线给出两指标强鞅停止的定义 。
3)  stop switch
停止开关
4)  stop mark
停止痕
1.
The causes for stop mark defect of extruded6063aluminium alloy profiles were analyzed.
分析了6063铝合金型材在挤压过程中产生“停止痕”缺陷的原因,提出了相应的对策。
5)  stop criterion
停止准则
1.
Combined with the characteristic of the advancing front s average energy when the curve evolving,the stop criterion of Fast Marching method was redefined.
该方法结合演化曲线在演化过程中平均能量的变化特性,重新定义Fast Marching算法的停止准则,从而提高了算法的鲁棒性和自动性。
2.
Based on the optimal decoding algorithm and basic principle of iterative decoding for turbo code, the stop criterion for the iterative decoding is deduced under the condition of cross entropy minimization and iteration convergence.
根据Turbo码最优译码算法及迭代译码的基本原理 ,在保证迭代收敛的条件下 ,利用交叉熵最小化原则推导出Turbo码译码过程中停止迭代的准则 ,并给出了一种降低计算复杂性和减少存贮空间的简化算法 ,最后通过仿真证明了此迭代停止准则及其简化算法的有效性。
6)  fentanyl
呼吸停止
1.
A case of breath stopping caused murphy dripping with fentanyl was reported.
报道了静滴芬太尼引起呼吸停止一例 ,对该病例进行了讨论 ,提出了注意事项。
参考词条
补充资料:UG自定义右键弹出菜单和快捷键

UG的右键弹出菜单包含了一些我们常用的功能,比如Roate、Fit等,为了使用的更加方便,我们也可以自己打造!打开UG安装目录下的UGII下的menus文件夹,里面包含了一些*.men和*.tbr,我们以文本方式打开它,发现也不难理解。例如,我们想在右键弹出菜单里面的roate和pan之间加入如图示的view下的orient功能,首先我们打开ug_main.men,查找orient,会看到下面的内容:



BUTTON UG_VIEW_REFRESH
LABEL &Refresh
BITMAP refresh_window.bmp
ACCELERATOR F5
ACTIONS STANDARD



CASCADE_BUTTON UG_VIEW_EDIT
LABEL O&peration



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACTIONS STANDARD



参考上面部分我们会看出快捷键的定义是*ACCELERATOR来指定的,我们把红色部分即BUTTON UG_VIEW_ORIENT的LABEL下面加入一行ACCELERATOR Ctrl+Alt+O(这里可以自行定义,但不要和别的重复),保存,这样我们就把快捷键定义好了,然后我们选中红色部分复制。接着打开ug_view_popup.men,它就是右键弹出菜单的定义文件。为了把它放在roate和pan之间,我们把刚才复制的部分粘贴在下面图示的位置:



TOGGLE_BUTTON UG_VIEW_POPUP_ROTATE
LABEL R&otate
BITMAP rotate.bmp
ACCELERATOR F7
ACTIONS STANDARD



BUTTON UG_VIEW_ORIENT
LABEL Ori&ent...
ACCELERATOR Ctrl+Alt+O
ACTIONS STANDARD



TOGGLE_BUTTON UG_VIEW_POPUP_PAN
LABEL &Pan
BITMAP pan.bmp
ACCELERATOR F9
ACTIONS STANDARD

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