1)  binary phase shift keying
二进制移相键控调制
2)  dyadic
二进
1.
The basic conception of dyadic wavelet transform is introduced The practical expression of dyadic discrete wavelet transform of digital signal is presented.
介绍了二进小波变换的基本概念 ,给出了数字信号二进离散小波变换的实用表达式 。
3)  law with 2
二进律
4)  binary system
二进制
1.
An investigation and analysis on the issue of the relationship between Xian tian tu and binary system;
对“先天图与二进制关系”之争的考察与辨析
2.
Had Leibniz not seen the Xian tian tu before he founded the binary system? —— A textual research of European literature about culture exchange between China and the West in the seventeenth century;
莱布尼茨发明二进制前没有见过先天图吗——对欧洲现存17世纪中西交流文献的考证
3.
Computers need numerical value change between binary system,octal system and decimal system The fortran77 is used in the programming to perform the numerical value converting.
计算机需要数制转换,计算机内部使用二进制,二进制八进制十进制之间的数制转换,FORTRAN77编制,围绕二进制与小数,完成二进制八进制十进制之间的数制转换。
5)  dyadic wavelet
二进小波
1.
The four-level center B-spline semi-orthogonal dyadic wavelet was used to identify the singular points of the faulty current,and the theoretical support is analyzed.
介绍了将四阶中心B样条半正交二进小波用于故障电流特征时刻的确定,详细阐释了其理论依据;借助主保护、重合闸整定配置时间信息,在考虑保护和断路器正确动作、拒动、误动等情况下,就超高压电网发生简单故障,故障发生在本站或相邻站线路时,详细分析本站线路故障电流的变化特点,提出基于故障模拟量选线诊断新思想,克服了传统基于数字量信息故障选线诊断的缺陷。
2.
The property and algorithm of dyadic wavelet function and dyadic wavelet transform basing on B spline are introduced.
介绍了基于B样条的二进小波函数及二进小波变换的特性、算法,重点介绍了基于小波变换模极大值的信号奇异性检测理论,其要点是:信号可以通过其小波变换模极大值表示,也可通过其模极大值重构。
3.
This paper present the existing image edge detection method based on dyadic wavelet transform first,and then analyzed the drawback of the method.
该算法主要是对边缘点的判断准则进行了改进,通过将任一点的梯度方向与水平、垂直、45°、135°方向进行比较,将这4个方向中与该点梯度方向最接近的一个方向重新赋给该点的梯度方向,并检验二进小波变换的模在该点是否为新的梯度方向上的局部极大值,若是,该点就是边缘点,否则不是。
6)  binary
二进制
1.
On the methods of binary selection fitting coding of the modularized design;
基于模块化设计的二进制选装编码方法
2.
Analysis of algorithm of binary two -bit based multiplication;
二进制补码两位乘算法分析
3.
Association rules mining algorithm based on binary;
基于二进制的关联规则挖掘算法
参考词条
补充资料: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

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