计算机算法常用术语中英对照

计算机算法常用术语中英对照
计算机算法常用术语中英对照

第一部分计算机算法常用术语中英对照

Data Structures 基本数据结构Dictionaries 字典Priority Queues 堆Graph Data Structures 图Set Data Structures 集合Kd-Trees 线段树Numerical Problems 数值问题Solving Linear Equations 线性方程组Fourier变换Bandwidth Reduction 带宽压缩Matrix Multiplication 矩阵乘法Satisfiability 可满足性Determinants and Permanents 行列式Linear Programming 线性规划Matching 匹配Constrained and Unconstrained Optimization 最值问题Clique 最大团Cryptography 密码Random Number Generation 随机数生成Shortest Path 最短路径recursion递归Factoring and Primality Testing 因子分解/质数判定Searching 查找Sorting 排序Arbitrary Precision Arithmetic 高精度计算Calendrical Calculations 日期

Discrete Fourier Transform 离散Combinatorial Problems 组合问题

Median and Selection 中位数Generating Permutations 排列生成

Generating Subsets 子集生成Generating Partitions 划分生成

Generating Graphs 图的生成Job Scheduling 工程安排

Graph Problems -- polynomial 图论-多项式算法Connected Components 连通分支Topological Sorting 拓扑排序Minimum Spanning Tree 最小生成树Transitive Closure and Reduction 传递闭包Network Flow 网络流

Eulerian Cycle / Chinese Postman Euler回路/中国邮路

Edge and Vertex Connectivity 割边/割点Independent Set 独立集

Drawing Graphs Nicely 图的描绘Drawing Trees 树的描绘

Planarity Detection and Embedding 平面性检测和嵌入Vertex Cover 点覆盖

Graph Problems -- hard 图论-NP问题Traveling Salesman Problem 旅行商问题Hamiltonian Cycle Hamilton回路Graph Partition 图的划分

Vertex Coloring 点染色Edge Coloring 边染色

Graph Isomorphism 同构Steiner Tree Steiner树

Feedback Edge/Vertex Set 最大无环子图Computational Geometry 计算几何

Convex Hull 凸包Triangulation 三角剖分

V oronoi Diagrams V oronoi图Nearest Neighbor Search 最近点对查询Range Search 范围查询Point Location 位置查询

Intersection Detection 碰撞测试Bin Packing 装箱问题

Medial-Axis Transformation 中轴变换Polygon Partitioning 多边形分割Simplifying Polygons 多边形化简Shape Similarity 相似多边形

Motion Planning 运动规划Maintaining Line Arrangements 平面分割Minkowski Sum Minkowski和Set and String Problems 集合与串的问题

Set Cover 集合覆盖Set Packing 集合配置

Approximate String Matching 模糊匹配Text Compression 压缩

DP—Dynamic Programming动态规划Longest Common Substring 最长公共子串Shortest Common Superstring 最短公共父串String Matching 模式匹配

Finite State Machine Minimization 有穷自动机简化

第二部分数据结构英语词汇

数据抽象data abstraction 数据元素data element 数据对象data object

数据项data item 数据类型data type 抽象数据类型abstract data type 逻辑结构logical structure 物理结构phyical structure 线性结构linear structure

非线性结构nonlinear structure基本数据类型atomic data type线性表linear list

数组array 直接前趋immediate predecessor 队列queue

串string 固定聚合数据类型fixed-aggregate data type 栈stack

可变聚合数据类型variable-aggregate data type 树tree 图grabh

查找,线索searching 更新updating 排序(分类) sorting

插入insertion 删除deletion 前趋predecessor

后继successor 直接后继immediate successor 双端列表deque(double-ended queue) 循环队列cirular queue 指针pointer 先进先出表(队列)first-in first-out list 后进先出表(队列)last-in first-out list 栈底bottom 栈定top

压入push 弹出pop 队头front 队尾rear 上溢overflow

下溢underflow 数组array 矩阵matrix 多维数组multi-dimentional array

以行为主的顺序分配row major order 以列为主的顺序分配column major order

三角矩阵truangular matrix 对称矩阵symmetric matrix 稀疏矩阵sparse matrix

转置矩阵transposed matrix 链表linked list 线性链表linear linked list

单链表single linked list 多重链表multilinked list 循环链表circular linked list

双向链表doubly linked list 十字链表orthogonal list 广义表generalized list

链link 指针域pointer field 链域link field 头结点head node 头指针head pointer 尾指针tail pointer 串string 空白(空格)串blank string 空串(零串)null string 子串substring 树tree 子树subtree 森林forest 根root 叶子leaf

结点node 深度depth 层次level 双亲parents 孩子children 兄弟brother 祖先ancestor 子孙descentdant 二叉树binary tree 平衡二叉树banlanced binary tree

满二叉树full binary tree 完全二叉树complete binary tree

遍历二叉树traversing binary tree 二叉排序树binary sort tree

二叉查找树binary search tree 线索二叉树threaded binary tree

哈夫曼树Huffman tree 有序数ordered tree

无序数unordered tree 判定树decision tree 双链树doubly linked tree

数字查找树digital search tree 树的遍历traversal of tree 先序遍历preorder traversal 中序遍历inorder traversal 后序遍历postorder traversal 图graph

子图subgraph 有向图digraph(directed graph) 无向图undigraph(undirected graph) 完全图complete graph 连通图connected graph 非连通图unconnected graph

强连通图strongly connected graph 弱连通图weakly connected graph加权图weighted graph 有向无环图directed acyclic graph 稀疏图spares graph 稠密图dense graph

重连通图biconnected graph 二部图bipartite graph 边edge 顶点vertex

弧arc 路径path 回路(环)cycle弧头head弧尾tail 源点source

终点destination 汇点sink 权weight 连接点articulation point

初始结点initial node 终端结点terminal node 相邻边adjacent edge

相邻顶点adjacent vertex 关联边incident edge 入度indegree

出度outdegree 最短路径shortest path 有序对ordered pair

无序对unordered pair 简单路径simple path 简单回路simple cycle

连通分量connected component 邻接矩阵adjacency matrix 邻接表adjacency list

邻接多重表adjacency multilist 遍历图traversing graph 生成树spanning tree

最小(代价)生成树minimum(cost)spanning tree 生成森林spanning forest

拓扑排序topological sort 偏序partical order 拓扑有序topological order

AOV网activity on vertex network AOE网activity on edge network

关键路径critical path 匹配matching 最大匹配maximum matching

增广路径augmenting path 增广路径图augmenting path graph 查找searching

线性查找(顺序查找)linear search (sequential search) 二分查找binary search

分块查找block search 散列查找hash search 平均查找长度average search length

散列表hash table 散列函数hash funticion 直接定址法immediately allocating method 数字分析法digital analysis method 平方取中法mid-square method 折叠法folding method 除法division method 随机数法random number method 排序sort

内部排序internal sort 外部排序external sort 插入排序insertion sort

随小增量排序diminishing increment sort 选择排序selection sort 堆排序heap sort

快速排序quick sort 归并排序merge sort 基数排序radix sort 外部排序external sort 平衡归并排序balance merging sort 二路平衡归并排序balance two-way merging sort

多步归并排序ployphase merging sort 置换选择排序replacement selection sort

文件file 主文件master file 顺序文件sequential file 索引文件indexed file

索引顺序文件indexed sequential file 索引非顺序文件indexed non-sequential file

直接存取文件direct access file 多重链表文件multilist file 倒排文件inverted file

目录结构directory structure 树型索引tree index

计算机编程及常用术语大全(英汉对照)

第一部分、计算机算法常用术语中英对照 Data Structures 基本数据结构 Dictionaries 字典 Priority Queues 堆 Graph Data Structures 图 Set Data Structures 集合 Kd-Trees 线段树 Numerical Problems 数值问题 Solving Linear Equations 线性方程组 Bandwidth Reduction 带宽压缩 Matrix Multiplication 矩阵乘法 Determinants and Permanents 行列式 Constrained and Unconstrained Optimization 最值问题Linear Programming 线性规划 Random Number Generation 随机数生成 Factoring and Primality Testing 因子分解/质数判定Arbitrary Precision Arithmetic 高精度计算Knapsack Problem 背包问题 Discrete Fourier Transform 离散Fourier变换Combinatorial Problems 组合问题 Sorting 排序

Searching 查找 Median and Selection 中位数 Generating Permutations 排列生成 Generating Subsets 子集生成 Generating Partitions 划分生成 Generating Graphs 图的生成 Calendrical Calculations 日期 Job Scheduling 工程安排 Satisfiability 可满足性 Graph Problems -- polynomial 图论-多项式算法Connected Components 连通分支 Topological Sorting 拓扑排序 Minimum Spanning Tree 最小生成树 Shortest Path 最短路径 Transitive Closure and Reduction 传递闭包Matching 匹配 Eulerian Cycle / Chinese Postman Euler回路/中国邮路Edge and Vertex Connectivity 割边/割点 Network Flow 网络流 Drawing Graphs Nicely 图的描绘 Drawing Trees 树的描绘 Planarity Detection and Embedding 平面性检测和嵌入

课程翻译参考

课程翻译参考 财务学专业课程汉英对照表 货币银行学Money and Banking 证券投资学Security Analysis and Investment 财务报告分析Analysis of Financial Statement 国际金融International Finance 保险学Insurance 财务案例分析Case Analysis of Finance Management 国际财务管理International Financial Management 资产评估Assets Appraisal 项目评估Projects Appraisal 宏观经济学Macroeconomics 财务管理Financial Management 管理信息系统Systems of Management Information 运筹学Operational Research 策略管理Strategic Management 管理会计Managerial Accounting 微观经济学Microeconomics 管理学Principles of Management 微积分Calculus 统计学Principles of Statistics 市场营销学专业课程汉英对照表 营销管理Marketing Management 公共关系Public Relationship 国际贸易International Trade 消费者行为Consumer Behavior 管理信息系统Systems of Management Information 营销调研Marketing Research 推销学Sales Strategies 国际金融International Finance 营销预测与规划Marketing Forecasting and Planning 销售渠道管理ales Channels Management 国际市场营销International Marketing 商业谈判Business Negotiation 广告管理Advertising Management 营销案例分析Case Studies of Marketing 国际贸易实务Practice of International Trade 服务业营销Service Industry Marketing 企业伦理Enterprise Ethics 新产品开发New Products Development 管理学Principles of Management 会计专业课程汉英对照表 会计学Accounting Principles 成本会计Cost Accounting 管理会计Managerial Accounting 审计学Auditing Principles 会计信息系统Accounting Information Systems 投资学Investment Principles 财务管理Financial Management 货币银行学Money and Banking 财务报告分析Analysis of Financial Statement 国际金融International Finance 国际会计International Accounting 财税法规与税务会计Laws and Regulations of Finance and Taxes 预算会计Budget Accounting 内部审计与政府审计Internal Auditing and Government Auditing 会计审计实务Accounting and Auditing Practice 经济计量学Economic Metrology 会计职业道德与责任Accounting Ethics and Responsibilities 会计研究方法Accounting Research Methods 国际会计专题International Accounting Special Subject 微观经济学Microeconomics 微积分Calculus 统计学Principle of Statistics 企业管理专业课程汉英对照表 管理学Principles of Management 微观经济学Microeconomics 宏观经济学Macroeconomics 管理信息系统Systems of Management Information

信号与系统常用词汇中英文对照表

信号与系统常用词汇中英文对照表 序号英文词汇中文翻译 1 Absolutely summable impulse response 绝对可和的冲激响应 2 Absolutely integrable impulse response 绝对积的冲激响应 3 Accumulation property 累加性质 4 Adder 加法器 5 Additivity 可加性 6 Aliasing 混叠 7 Allpass system 全通系统 8 Amplitude Modulation(AM) 幅度调制 9 Amplifier 放大器 10 Analog-to-Digital Conversion 模数转换 11 Analysis equation 分析方程 12 Aperiodic signal 非周期性信号 13 Associative property 结合性质 14 Audio system 音频系统 15 Autocorrelation function 自相关函数 16 Band-limited signal 带限信号 17 Band-limited interpolation 带限内插 18 Bandpass filter 带通滤波器 19 Bandpass-sampling technique 带通抽样方法 20 Bandpass signal 带通信号 21 Bandwidth of an LTI system 线性时不变系统的带宽 22 Bilinear transformation 双线性变换 23 Block diagram 方框图 24 Bode plot 波特图 25 Butterworth filter 巴特沃斯滤波器 26 Carrier frequency 载波频率 27 Carrier signal 载波信号 28 Cartesian (rectangular) form for complex number 复数的笛卡尔(直角坐标)形式 29 Cascade-form block diagram 级联型方框图 30 Cascade (series) interconnection 级联连接 31 Causal LTI system 因果的线性时不变系统 32 Channel equalization 信道均衡 33 """Chirp"" transform algorithm" 线性调频变换算法 34 Closed-loop system 闭环系统 35 Coefficient multiplier 系数乘法器 36 Communication system 通信系统 37 Commutative property 交换性质 38 Complex conjugate 复共轭 39 Complex exponential 复指数 40 Complex number 复数 41 Continuous-time signal 连续时间信号 42 Conjugate symmetry 共轭对称性

鞋业(类)常用术语中英文对照

鞋业(类)常用术语中英文对照 ---欧维思品牌鞋业折扣店 --https://www.360docs.net/doc/164727162.html, 目录 第一章:Stage 阶段………………………………P2-P10 第二章技术……………………………P7-P15 第三章鞋型转移……………………………P16-P17 欧维思品牌鞋业折扣店招商加盟网--https://www.360docs.net/doc/164727162.html,- 1 -

第一章:Stage 阶段 ----欧维思品牌鞋业折扣店https://www.360docs.net/doc/164727162.html, I.3.1. Two main sections in Dev. Division 开发的两大部分: 1. Development section: explain more in process of new models to make samples in order to introduce market to achieve qty. 开发部分:此部分着重于新型体的样品制作,以便可介绍给客户来争取一定数量的订单。 https://www.360docs.net/doc/164727162.html,mercialization section: explain more in process of technical after it was developed with Fitting test and Wear test to ensure that all products meet consumers’ expectations in terms of Fitting, Comfort and Performance. 技术部分:开发转移到技术部门,此阶段着重于在开发阶段完成试穿测试, 确保产品在试穿/舒适/功能方面可满足客户的要求后进行的技术工作。 I.3.2. Development Stages 开发阶段 I.3.2.1. PPR: Pre Prototype Review 初始线条评估 1st stage to review all sample products Internally by customer ( Marketing,designer,L.O) For performance shoes, we have Fitting and Wear Test Sample to be sent. * The topics of review are : 1. Material 2. Quality 3. Performance 4. Price 5. Color 6. Design 7. Forecast 客人内部(市场销售、设计师、本地客人)对于新鞋型第一阶段之评估。 对于功能性鞋型,我们要寄Fitting test &Wear test试穿样品。 此时检查要点如下: 1、材料 2、品质 3、功能 4、价格 5、颜色 6、设计 7、订单预测 I.3.2.2. PFR:Prototype Final Review 最后线条评估 Final stage to review all sample shoes before introducing the products to the customers. At this time, all key points should be finally decided (Pattern / Design, Color,Price, Material (should be released), etc.). The result of Fitting Test should be considered for PPR meeting as a basic. 在全部新鞋型介绍给客户前之最后检查阶段,此时所有要点均需做出最后确定,如:纸版、设计、颜色、价位、材料(必须是通过了测试)等等。 寄出试样鞋时需附上试穿报告。此时的试穿结果是PPR 会议之基本考量点。 I.3.2.3. SMS1:Salesman Sample 1 销样一 欧维思品牌鞋业折扣店招商加盟网--https://www.360docs.net/doc/164727162.html,- 2 -

大学课程专业名称中英文对照

大学课程专业名称中英文对照 关键词:大学课程专业名称中英文对照 工学ENGINEERING 课程中文名称课程英文名称 高等数理方法Advanced Mathematical Method 弹塑性力学Elastic-Plastic Mechanics 板壳理论Theory of Plate and Shell 高等工程力学Advanced Engineering Mechanics 板壳非线性力学Nonlinear Mechanics of Plate and Shell 复合材料结构力学Structural Mechanics of Composite Material 弹性元件的理论及设计Theory and Design of Elastic Element 非线性振动Nonlinear Vibration 高等土力学Advanced Soil Mechanics 分析力学Analytic Mechanics 随机振动Random Vibration 数值分析Numerical Analysis 基础工程计算与分析Calculation and Analysis of Founda tion Engineering 结构动力学Structural Dynamics 实验力学Laboratory Mechanics 损伤与断裂Damage and Fracture 小波分析Wavelet Analysis 有限元与边界元分析方法Analytical Method of Finite Element and Boundary Element 最 优化设计方法Optimal Design Method 弹性力学Elastic Mechanics 高层建筑基础Tall Building Foundation 动力学Dynanics 土的本构关系Soil Constitutive Relation 数学建模Mathe matical

计算机算法常用术语中英对照

第一部分计算机算法常用术语中英对照 Data Structures 基本数据结构Dictionaries 字典Priority Queues 堆Graph Data Structures 图Set Data Structures 集合Kd-Trees 线段树Numerical Problems 数值问题Solving Linear Equations 线性方程组Fourier变换Bandwidth Reduction 带宽压缩Matrix Multiplication 矩阵乘法Satisfiability 可满足性Determinants and Permanents 行列式Linear Programming 线性规划Matching 匹配Constrained and Unconstrained Optimization 最值问题Clique 最大团Cryptography 密码Random Number Generation 随机数生成Shortest Path 最短路径recursion递归Factoring and Primality Testing 因子分解/质数判定Searching 查找Sorting 排序Arbitrary Precision Arithmetic 高精度计算Calendrical Calculations 日期 Discrete Fourier Transform 离散Combinatorial Problems 组合问题 Median and Selection 中位数Generating Permutations 排列生成 Generating Subsets 子集生成Generating Partitions 划分生成 Generating Graphs 图的生成Job Scheduling 工程安排 Graph Problems -- polynomial 图论-多项式算法Connected Components 连通分支Topological Sorting 拓扑排序Minimum Spanning Tree 最小生成树Transitive Closure and Reduction 传递闭包Network Flow 网络流 Eulerian Cycle / Chinese Postman Euler回路/中国邮路 Edge and Vertex Connectivity 割边/割点Independent Set 独立集 Drawing Graphs Nicely 图的描绘Drawing Trees 树的描绘 Planarity Detection and Embedding 平面性检测和嵌入Vertex Cover 点覆盖 Graph Problems -- hard 图论-NP问题Traveling Salesman Problem 旅行商问题Hamiltonian Cycle Hamilton回路Graph Partition 图的划分 Vertex Coloring 点染色Edge Coloring 边染色 Graph Isomorphism 同构Steiner Tree Steiner树 Feedback Edge/Vertex Set 最大无环子图Computational Geometry 计算几何 Convex Hull 凸包Triangulation 三角剖分 V oronoi Diagrams V oronoi图Nearest Neighbor Search 最近点对查询Range Search 范围查询Point Location 位置查询 Intersection Detection 碰撞测试Bin Packing 装箱问题 Medial-Axis Transformation 中轴变换Polygon Partitioning 多边形分割Simplifying Polygons 多边形化简Shape Similarity 相似多边形 Motion Planning 运动规划Maintaining Line Arrangements 平面分割Minkowski Sum Minkowski和Set and String Problems 集合与串的问题 Set Cover 集合覆盖Set Packing 集合配置 Approximate String Matching 模糊匹配Text Compression 压缩 DP—Dynamic Programming动态规划Longest Common Substring 最长公共子串Shortest Common Superstring 最短公共父串String Matching 模式匹配 Finite State Machine Minimization 有穷自动机简化

常用金融术语(中英对照)

熟练掌握名目繁多金融术语除了是专业人士的必修课外,在金融渗透、人人参与投资的时代,了解一些常用的金融术语也对普通投资者们大有益处。本文就为你详细列举了一些常用的可中英文对照的金融术语,帮助你了解生活中的金融。 金融 资产组合(Portfolio):指投资者持有的一组资产。一个资产多元化的投资组合 通常会包含股票、债券、货币市场资产、现金以及实物资产如黄金等。 证券投资(Portfolio Investment) :国际收支中、资本帐下的一个项目,反映资 本跨国进行证券投资的情况,与直接投资不同,后者涉及在国外设立公司开展业务,直接参与公司的经营管理。证券投资则一般只是被动地持有股票或债券。 投资组合经理(Portfolio Manager):替投资者管理资产组合的人,通常获授权 在约定规范下自由运用资金。共同基金的投资组合经理负责执行投资策略,将资金投资在各类资产上。 头寸(Positio n):就证券投资而言,头寸是指在一项资产上做多(即拥有)或做空(即借入待还)的数量。 总资产收益率(ROTA):资产收益率是企业净利润与平均资产总额地百分比,也 叫资产回报率(ROA),它是用来衡量每单位资产创造多少净利润的指标。其计 算公式为:资产收益率二净利润/平均资产总额X 100% ;该指标越高,表明企业 资产利用效果越好,说明企业在增加收入和节约资金使用等方面取得了良好的效果,否则相反。 整批交易(Round Lot Trade):指按证券和商品在市场最普遍的交易单位(例如 100股为一单位)进行的交易。 交易回合(Round Turn):指在同一市场上通过对两种证券或合约一买一卖,或 一卖一买的交易两相抵消。通常在计算手续费时会提及交易回合。

中英文个人简历表格

中英文个人简历表格 篇一:我的中英文个人简历表格 中英文个人简历表 篇二:【免费】英文个人简历(表格版) 篇三:中英文个人简历模板 个人简历 个人基本信息: 姓名:×××民族:汉 性别:男出生年月:××× 政治面貌:党员户籍:××× 学历:××身体状况:良好 毕业院校:××××专业:×××××× 联系电话:××××× E-mail:××××@https://www.360docs.net/doc/164727162.html, 联系地址:上海市闵行区邮政编码:20XX40 教育经历: ××~××:在××大学攻读××学士学位; ××~××:在××大学攻读××硕士学位,研究方向××××××。 专业基础: 《c语言程序设计》、《汇编语言程序设计》、《数据结构》、《操作系统》、

《数据库》、《编译原理》、《计算机网络》、《计算机组成》、《wEB程序设计》、《计算机图形学》、《软件工程》、《算法分析与设计》、《组合数学》及《数据挖掘》等 研究方向: 1、××××; 2、××××; 英语能力: 1、通过国家cET6考试; 2、具有不错的英语读写能力,可以很熟练地阅读英文材料; 3、具有一定的口语听说能力。 兴趣爱好: 1、喜欢接触新鲜事物,喜欢挑战自己的能力; 2、喜欢篮球、乒乓球、游泳等体育运动; 3、喜欢读书、思考。 个人专长: 1、精通PHP,熟悉PHPweb开发技术,包括开发环境的搭建和应用程序的部署运行,对PHPmVc(smarty)技术有比较深刻的了解; 2、熟悉PHP领域众多开源项目,包括wordPress、myBB、zenphoto 等,能够独立修改和配置这些开源项目,以实现新的应用程序开发; 3、熟练掌握JavaScript、cSS等webUi开发技术,熟悉Jquery、dwR、EXT等ajax框架的使用,对Firebug、iEdeveloptools等Ui调试工具能灵活运用,可独立承担webUi

数字水印技术英文材料

A.Lumini,D.Maio.A wavelet-based image watermarking scheme,Proc of Int Conf.On Information Technology:Coding and Computing,2000:122-127. 与Fourier变换相比,小波变换是空间(时间)和频率的局部变换,因而能有效地从信号中提取信息。通过伸缩和平移等运算功能可对函数或信号进行多尺度的细化分析,解决了Fourier变换不能解决的许多困难问题。小波变换联系了应用数学、物理学、计算机科学、信号与信息处理、图像处理、地震勘探等多个学科。数学家认为,小波分析是一个新的数学分支,它是泛函分析、Fourier分析、样调分析、数值分析的完美结晶;信号和信息处理专家认为,小波分析是时间—尺度分析和多分辨分析的一种新技术,它在信号分析、语音合成、图像识别、计算机视觉、数据压缩、地震勘探、大气与海洋波分析等方面的研究都取得了有科学意义和应用价值的成果。 小波(Wavelet)这一术语,顾名思义,“小波”就是小的波形。所谓“小”是指它具有衰减性;而称之为“波”则是指它的波动性,其振幅正负相间的震荡形式。与Fourier变换相比,小波变换是时间(空间)频率的局部化分析,它通过伸缩平移运算对信号(函数)逐步进行多尺度细化,最终达到高频处时间细分,低频处频率细分,能自动适应时频信号分析的要求,从而可聚焦到信号的任意细节,解决了Fourier变换的困难问题,成为继Fourier变换以来在科学方法上的重大突破。有人把小波变换称为“数学显微镜”。 [C]小波分析的应用是与小波分析的理论研究紧密地结合在一起的。现在,它已经在科技信息产业领域取得了令人瞩目的成就。电子信息技术是六大高新技术中重要的一个领域,它的重要方面是图象和信号处理。现今,信号处理已经成为当代科学技术工作的重要部分,信号处理的目的就是:准确的分析、诊断、编码压缩和量化、快速传递或存储、精确地重构(或恢复)。从数学地角度来看,信号与图象处理可以统一看作是信号处理(图象可以看作是二维信号),在小波分析地许多分析的许多应用中,都可以归结为信号处理问题。现在,对于其性质随实践是稳定不变的信号,处理的理想工具仍然是傅立叶分析。但是在实际应用中的绝大多数信号是非稳定的,而特别适用于非稳定信号的工具就是小波分析。 事实上小波分析的应用领域十分广泛,它包括:数学领域的许多学科;信号分析、图象处理;量子力学、理论物理;军事电子对抗与武器的智能化;计算机分类与识别;音乐与语言的人工合成;医学成像与诊断;地震勘探数据处理;大型机械的故障诊断等方面;例如,在数学方面,它已用于数值分析、构造快速数值方法、曲线曲面构造、微分方程求解、控制论等。在信号分析方面的滤波、去噪声、压缩、传递等。在图象处理方面的图象压缩、分类、识别与诊断,去污等。在医学成像方面的减少B超、CT、核磁共振成像的时间,提高分辨率等。 (1)小波分析用于信号与图象压缩是小波分析应用的一个重要方面。它的特点是压缩比高,压缩速度快,压缩后能保持信号与图象的特征不变,且在传递中可以抗干扰。基于小波分析的压缩方法很多,比较成功的有小波包最好基方法,小波域纹理模型方法,小波变换零树压缩,小波变换向量压缩等。 (2)小波在信号分析中的应用也十分广泛。它可以用于边界的处理与滤波、时频

AspenPlus常用词汇中英文对照表

Aspen Plus常用词汇中英文对照表 A adiabatic 绝热的 adsorption 吸附 aircooler 空冷器 algorithm 算法 alias 又名,别名 align 使……排成直线 ambient temperature 环境温度 analysis 分析 annotation 注释 apparent component approach 表观组分方法approach 方法 aqueous 水溶液的,水的,含水的 assay化验(油品分析) ADA (assay data analysis)化验数据分析assign 指定 attach连接 attr-comps 组分属性 attr-scaling属性标量 available可用的 B backup (降液管内的清液层)高度 baffles 挡板 balance 平衡模块,平衡 base components 基准组分 base method 基本方法(包含了常见物性方法)batch 批量处理,一批 BatchFrac 间歇精馏 binary interaction 二元交互作用 blank simulation 空白模拟 block模块 Block-Var 模块变量boilup ratio 再沸比 bottoms rate 塔底产品流率 bottoms to feed ratio塔底产品流率与进料流率比brake power 轴功率 Broyden 布洛伊顿拟牛顿法 built-in 内置 C calculator 计算器 capacity 通量 capacity factor 通量负荷因子 cascade 层叠 case study 工况分析 category 类别,种类 chemical equilibrium 化学平衡 Chem-Var 化学变量 class分类 clearance 间隙 co-current 并流 coefficient 系数 column 塔 CGCCs (column grand composite curves)塔的总组合曲线 column specifications 塔设定 Compattr-Var 组分变量 component 组分 composition 组成 Compr 压缩机或涡轮机模块 comps-groups 组分分组 conceptual design 概念设计 condenser 冷凝器 condenser specification 冷凝器设定 configuration 配置

常用保险术语(中英对照版本)

常用保险术语 保险费率 premium rate 单位保险金额应该收取的保险费。 损失 loss 非故意的、非预期的和非计划的经济价值的减少或灭失。通常分为直接损失和间接损失。 损失程度 loss severity 保险标的可能遭受的损失的严重程度。 直接损失 direct loss 由风险事故导致的财产本身的损失。 间接损失 indirect loss 由直接损失引起的额外费用损失、收入损失和责任损失等无形损失。 保险 insurance 投保人根据合同约定,向保险人支付保险费,保险人对于合同约定的可能发生的事故因其发生所造成的财产损失承担赔偿保险金责任,或者当被保险人死亡、伤残、疾病或者达到合同约定的年龄、期限时承担给付保险金责任的商业保险行为。 财产保险 property insurance 以财产及其有关利益为保险标的的保险。 企业财产保险 commercial property insurance 以单位、团体所有或占有的在指定地点的财产及其有关利益为保险标的的财产保险。 营业中断保险 business interruption insurance 以单位因停产、停业或经营受影响而面临的预期利润的减少及必要的费用支出为保险标的的财产保险。 机器损坏保险 machinery breakdown insurance 以各类已安装完毕并投入运行的机器为保险标的财产保险。 货物运输保险 cargo insurance 以运输途中的货物为保险标的保险。 海上货物运输保险 ocean marine cargo insurance 以通过海上运输方式运输的货物作为保险标的的保险。 陆上货物运输保险 inland transit insurance 以通过陆上运输方式运输的货物为保险标的的保险。

简历写作之课程名称中英文对照_个人简模板

简历写作之课程名称中英文对照_个人简模 板 简历写作之课程名称中英文对照 (转自.cn/bbs) 工学ENGINEERING 课程中文名称课程英文名称 高等数理方法Advanced Mathematical Method 弹塑性力学Elastic-Plastic Mechanics 板壳理论Theory of Plate and Shell 高等工程力学Advanced Engineering Mechanics 板壳非线性力学Nonlinear Mechanics of Plate and Shell 复合材料结构力学Structural Mechanics of Composite Material 弹性元件的理论及设计Theory and Design of Elastic Element 非线性振动Nonlinear Vibration 高等土力学Advanced Soil Mechanics 分析力学Analytic Mechanics 随机振动Random Vibration 数值分析Numerical Analysis

基础工程计算与分析Calculation and Analysis of Founda tion Engineering 结构动力学Structural Dynamics 实验力学Laboratory Mechanics 损伤与断裂Damage and Fracture 小波分析Wavelet Analysis 有限元与边界元分析方法Analytical Method of Finite Element and Boundary Element 最优化设计方法Optimal Design Method 弹性力学Elastic Mechanics 高层建筑基础Tall Building Foundation 动力学Dynanics 土的本构关系Soil Constitutive Relation 数学建模Mathematical Modeling 现代通信理论与技术Emerging Communications Theory and Technology 数字信号处理Digital Signal Processing 网络理论与多媒体技术Multi-media and Network Technology 医用电子学Electronics for Medicine 计算微电子学Computational Microelectronics 集成电路材料和系统电子学Material and System Electronics

高中数学常用术语中英对照 mathematics

数学mathematics, maths(BrE), math(AmE) 公理axiom 定理theorem 计算calculation 运算operation 证明prove 假设hypothesis, hypotheses(pl.) 命题proposition 算术arithmetic 加plus(prep.), add(v.), addition(n.) 被加数augend, summand 加数addend 和sum 减minus(prep.), subtract(v.), subtraction(n.) 被减数minuend 减数subtrahend 差remainder 乘times(prep.), multiply(v.), multiplication(n.) 被乘数multiplicand, faciend 乘数multiplicator 积product 除divided by(prep.), divide(v.), division(n.) 被除数dividend 除数divisor 商quotient 等于equals, is equal to, is equivalent to 大于is greater than 小于is lesser than 大于等于is equal or greater than

小于等于is equal or lesser than 运算符operator 平均数mean 算术平均数arithmatic mean 几何平均数geometric mean n个数之积的n次方根倒数(reciprocal)x的倒数为1/x 有理数rational number 无理数irrational number 实数real number 虚数imaginary number 数字digit 数number 自然数natural number 整数integer 小数decimal 小数点decimal point 分数fraction 分子numerator 分母denominator 比ratio 正positive 负negative 零null, zero, nought, nil 十进制decimal system 二进制binary system 十六进制hexadecimal system 权weight, significance 进位carry 截尾truncation

常见的大数据术语表(中英文对照版)

常见的大数据术语表(中英文对照版) A 聚合(Aggregation) - 搜索、合并、显示数据的过程 算法(Algorithms) - 可以完成某种数据分析的数学公式 分析法(Analytics) - 用于发现数据的内在涵义 异常检测(Anomaly detection) - 在数据集中搜索与预期模式或行为不匹配的数据项。除了"Anomalies",用来表示异常的词有以下几种:outliers, exceptions, surprises, contaminants.他们通常可提供关键的可执行信息 匿名化(Anonymization) - 使数据匿名,即移除所有与个人隐私相关的数据 应用(Application) - 实现某种特定功能的计算机软件 人工智能(Artificial Intelligence) - 研发智能机器和智能软件,这些智能设备能够感知周遭的环境,并根据要求作出相应的反应,甚至能自我学习 B 行为分析法(Behavioural Analytics) - 这种分析法是根据用户的行为如"怎么做","为什么这么做",以及"做了什么"来得出结论,而不是仅仅针对人物和时间的一门分析学科,它着眼于数据中的人性化模式 大数据科学家(Big Data Scientist) - 能够设计大数据算法使得大数据变得有用的人 大数据创业公司(Big data startup) - 指研发最新大数据技术的新兴公司 生物测定术(Biometrics) - 根据个人的特征进行身份识别 B字节(BB: Brontobytes) - 约等于1000 YB(Yottabytes),相当于未来数字化宇宙的大小。1 B字节包含了27个0! 商业智能(Business Intelligence) - 是一系列理论、方法学和过程,使得数据更容易被理解

常见电子专业术语中英文对照

常见电子专业术语中英文对照

常见电子专业术语中英文对照 常见英文缩写解释(按字母顺序排列): ASIC: Application Specific Integrated Circuit. 专用IC CPLD: Complex Programmable Logic Device. 复杂可编程逻辑器件 EDA: Electronic Design Automation. 电子设计自动化 FPGA: Field Programmable Gate Array. 现场可编程门阵列 GAL: Generic Array Logic. 通用阵列逻辑HDL: Hardware Description Language. 硬件描述语言 IP: Intelligent Property. 智能模块 PAL: Programmable Array Logic. 可编程阵列逻辑 RTL: Register Transfer Level. 寄存器传输级描述) SOC: System On a Chip. 片上系统

SLIC: System Level IC. 系统级IC VHDL: Very high speed integrated circuit Hardware Description Language. 超高速集成电路硬件描述语言 A ASIC(专用集成电路) Application-Specific Integrated Circuit. A piece of custom-designed hardware in a chip. 专用集成电路。一个在一个芯片上定制设计的硬件。 address bus (地址总线) A set of electrical lines connected to the processor and all of the peripher als withwhich itcommunicates. The address bus is used by the processor to select aspecific memory location or register within a particular peripheral. If the address bus contains n electrical lines, the processor can uniquely address up to 2^n such locations. 一个连接处理器与所有外设的,用来通讯的电

课程中英文对照表

工学ENGINEERING 课程中文名称课程英文名称 高等数理方法Advanced Mathematical Method 弹塑性力学Elastic-Plastic Mechanics 板壳理论Theory of Plate and Shell 高等工程力学Advanced Engineering Mechanics 板壳非线性力学Nonlinear Mechanics of Plate and Shell 复合材料结构力学Structural Mechanics of Composite Material 弹性元件的理论及设计Theory and Design of Elastic Element 非线性振动Nonlinear Vibration 高等土力学Advanced Soil Mechanics 分析力学Analytic Mechanics 随机振动Random Vibration 数值分析Numerical Analysis 基础工程计算与分析Calculation and Analysis of Founda tion Engineering 结构动力学Structural Dynamics 实验力学Laboratory Mechanics 损伤与断裂Damage and Fracture 小波分析Wavelet Analysis 有限元与边界元分析方法Analytical Method of Finite Element and Boundary Element 最优化设计方法Optimal Design Method 弹性力学Elastic Mechanics 高层建筑基础Tall Building Foundation 动力学Dynanics 土的本构关系Soil Constitutive Relation 数学建模Mathematical Modeling 现代通信理论与技术Emerging Communications Theory and Technology 数字信号处理Digital Signal Processing 网络理论与多媒体技术Multi-media and Network Technology 医用电子学Electronics for Medicine 计算微电子学Computational Microelectronics 集成电路材料和系统电子学Material and System Electronics for In tegrated Circuits 网络集成与大型数据库Computer Network Integrating Technology and Large scale Database 现代数字系统Modern Digital System 微机应用系统设计Microcomputer Application Design 计算机网络新技术Modern Computer Network Technologies 网络信息系统Network Information System 图像传输与处理Image Transmission and Processing 图像编码理论Theory of Image Coding 遥感技术Remote Sensing Techniques 虚拟仪器系统设计Design of Virtual Instrument System 生物医学信号处理技术Signal Processing for Biology and Medicine 光纤光学Fiber Optics VLSI的EDA技术EDA Techniques for VLSI 电子系统的ASIC技术ASIC Design Technologies VLSI技术与检测方法VLSI Techniques & Its Examination 专题阅读或专题研究The Special Subject Study 信息论Information Theory 半导体物理学Semiconductor Physics 通信原理Principle of Communication 现代数理逻辑Modern Mathematical Logic 算法分析与设计Analysis and Design of Algorithms 高级计算机网络Advanced Computer Networks 高级软件工程Advanced Software Engineering 数字图像处理Digital Image Processing 知识工程原理Principles of Knowledge Engineering 面向对象程序设计Object-Oriented Programming 形式语言与自动机Formal Languages and Automata 人工智能程序设计Artificial Intelligence Programming 软件质量与测试Software Quality and Testing 大型数据库原理与高级开发技术Principles of Large-Scale Data-Bas e and Advanced Development Technology 自然智能与人工智能Natural Intelligence and Artificial Intelligence Unix操作系统分析Analysis of Unix System

相关文档
最新文档