说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> 超网键近似
1)  Hypernetted-chain approximation
超网键近似
2)  bond-random approximation
无规键近似
3)  Near Duplicate Web Pages
近似网页
4)  Approximate Grid
近似网格
1.
(2) To conduct the research and the exploration based on the Kriging Interpolation Approximate Grid Algorithm in the raster data projection transformation\'s application, using C # programming language and ArcEngine has realized raster data projection transformation based on the Kriging Interpolation Approximate Grid Algorithm.
(2)对克里金插值近似网格算法在栅格数据投影变换中的应用进行了研究与探索,利用C#语言和ArcEngine编程实现了基于克里金插值近似网格算法的栅格数据投影变换。
2.
Based on common algorithm of raster data projection thansformation,the article provides a new method of raster data projection transformation concerning bilinear interpolation Approximate Grid algorithm,describing the process in detail and analyzing detail characteristics.
在栅格数据投影变换常用算法的基础上,介绍一种新的基于双线性内插近似网格算法的栅格数据投影变换,并详细描述其算法过程,认真分析其特点,并证明该算法在大范围栅格数据投影变换中有显著优点。
5)  super-transitive approximate
超传递近似
1.
The super-transitive approximate method was presented in confirming the weight of objectives that include pump discharge pressure, rotor efficiency and required input power in multi-objective optimization.
在多目标优化设计当中,采用超传递近似法对目标之间的重要性进行模糊评价,确定各目标的权值,从而求出优化结果。
6)  Nearly Ultra-fuzzy Compactness
近似超紧集
补充资料: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

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