说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 键稀疏
1)  bond dilution
键稀疏
1.
Magnetizations of the bond dilution ferromagnetic mixed Blume-Capel model in a bimodal magnetic field;
二模外场下键稀疏铁磁混合Blume-Capel模型的磁化
2.
In the frame of Ising model, we investigate the critical properties of bond dilution ferromagnetic spin system with random crystal field and obtain the magnetization expressions by using effective field theory.
在伊辛模型的框架内考虑键稀疏和随机晶场作用的铁磁自旋系统的三临界特性,采用有效场理论推导磁化表达式,重点研究方格子的三临界特性随键稀疏和随机晶场的改变呈现出的一些新的变化,并给出了相应的相图。
2)  Bond and site dilution
键与座稀疏
3)  Bond dilution ferromagnetic spin system
键稀疏铁磁自旋系统
4)  sparse [英][spɑ:s]  [美][spɑrs]
稀疏
1.
Which the method one dimension compress store of large-scale sparse systems of equal bandwidth positive definite symmetric linear equitions being used for solving the function of peotential distribution from normal resistivity logs,the solving method of this paper can normally deal with parameters from 1 to more than 2×10~6.
在用有限元法进行普通电阻率测井中的电位分布函数的求解过程中,使用了大型稀疏等带宽矩阵的一维压缩存储方法,从而使该求解过程的计算程序可适用于地层参数相差200万倍以上的情况。
2.
A maze running algorithm is proposed to find the shortest path between two given points in a grid with sparse rectangular obstacles.
给出了一个在具有稀疏矩形障碍的迷宫中寻找给定的两个单元之间的最短路径的算法。
3.
A algorithm for solving large-scale sparse group of linear equations is presented.
给出了求解大规模稀疏线性方程组的一个实用算法;该算法能够保持矩阵的稀疏性和减少存贮量,并且能够求解一些大规模的问题。
5)  sparsity [英]['spɑ:siti]  [美]['spɑrsətɪ]
稀疏
1.
Collaborative filtering is the most prevalent algorithm of personalized service,but there are always two difficult problems for collaborative filtering algorithms,that is,data sparsity and expansibility.
协作过滤是当今应用最为普遍的个性化推荐算法,然而数据的稀疏性和算法的可扩展性一直是协作过滤算法所面临的两大问题。
2.
The sparsity and the problem of the curse of dimensionality of high-dimensional data, make the most of traditional clustering algorithms lose their action in high-dimensional space.
高维数据的稀疏性和"维灾"问题使得多数传统聚类算法失去作用,因此研究高维数据集的聚类算法己成为当前的一个热点。
6)  sparseness [英]['spɑ:snis]  [美]['spɑrsnɪs]
稀疏
补充资料: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

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