matlab常用单词05
MATLAB一些术语

MATLAB一些术语一matlab常用函数1、特殊变量与常数ans 计算结果的变量名computer 确定运行的计算机eps 浮点相对精度Inf 无穷大I 虚数单位inputname 输入参数名NaN 非数nargin 输入参数个数nargout 输出参数的数目pi 圆周率nargoutchk 有效的输出参数数目realmax 最大正浮点数realmin 最小正浮点数varargin 实际输入的参量varargout实际返回的参量操作符与特殊字符+ 加- 减* 矩阵乘法 .* 数组乘(对应元素相乘)^ 矩阵幂 .^ 数组幂(各个元素求幂)\ 左除或反斜杠/ 右除或斜面杠 ./ 数组除(对应元素除)kron Kronecker 张量积: 冒号() 圆括[] 方括 . 小数点 .. 父目录 ... 继续, 逗号(分割多条命令); 分号(禁止结果显示)% 注释! 感叹号' 转置或引用= 赋值== 相等<> 不等于& 逻辑与| 逻辑或~ 逻辑非xor 逻辑异或2、基本数学函数abs 绝对值和复数模长acos,acodh 反余弦,反双曲余弦acot,acoth 反余切,反双曲余切acsc,acsch 反余割,反双曲余割angle 相角asec,asech 反正割,反双曲正割secant 正切asin,asinh 反正弦,反双曲正弦atan,atanh 反正切,双曲正切tangent 正切atan2 四象限反正切ceil 向着无穷大舍入complex 建立一个复数conj复数配对cos,cosh 余弦,双曲余弦csc,csch 余切,双曲余切cot,coth 余切,双曲余切exp 指数fix 朝0方向取整floor 朝负无穷取整*** 最大公因数imag 复数值的虚部lcm 最小公倍数log 自然对数log2 以2为底的对数log10 常用对数mod 有符号的求余nchoosek 二项式系数和全部组合数real 复数的实部rem 相除后求余round 取整为最近的整数sec,sech 正割,双曲正割sign 符号数sin,sinh 正弦,双曲正弦sqrt 平方根tan,tanh 正切,双曲正切3、基本矩阵和矩阵操作blkding 从输入参量建立块对角矩阵eye 单位矩阵linespace 产生线性间隔的向量logspace 产生对数间隔的向量numel 元素个数ones 产生全为1的数组rand 均匀颁随机数和数组randn 正态分布随机数和数组zeros 建立一个全0矩阵colon) 等间隔向量cat 连接数组diag 对角矩阵和矩阵对角线fliplr 从左自右翻转矩阵flipud 从上到下翻转矩阵repmat 复制一个数组reshape 改造矩阵roy90 矩阵翻转90度tril 矩阵的下三角triu 矩阵的上三角dot 向量点集cross 向量叉集ismember 检测一个集合的元素intersect 向量的交集setxor 向量异或集setdiff 向是的差集union 向量的并集数值分析和傅立叶变换cumprod 累积cumsum 累加cumtrapz 累计梯形法计算数值微分factor 质因子inpolygon 删除多边形区域内的点max 最大值mean 数组的均值mediam 中值min 最小值perms 所有可能的转换polyarea 多边形区域primes 生成质数列表prod 数组元素的乘积rectint 矩形交集区域sort 按升序排列矩阵元素sortrows 按升序排列行std 标准偏差sum 求和trapz 梯形数值积分var 方差del2 离散拉普拉斯diff 差值和微分估计gradient 数值梯度cov 协方差矩阵corrcoef 相关系数conv2 二维卷积conv 卷积和多项式乘法filter IIR或FIR滤波器 deconv 反卷积和多项式除法filter2 二维数字滤波器cplxpair 将复数值分类为共轭对fft 一维的快速傅立叶变换fft2 二维快速傅立叶变换fftshift 将FFT的DC分量移到频谱中心ifft 一维快速反傅立叶变换ifft2 二维傅立叶反变换ifftn 多维快速傅立叶变换ifftshift 反FFT偏移nextpow2 最靠近的2的幂次unwrap 校正相位角多项式与插值conv 卷积和多项式乘法roots 多项式的根poly 具有设定根的多项式polyder 多项式微分polyeig 多项式的特征根polyfit 多项式拟合polyint 解析多项式积分polyval 多项式求值polyvalm 矩阵变量多项式求值residue 部分分式展开interp1 一维插值interp2 二维插值interp3 三维插值interpft 使用FFT的一维插值interpn 多维插值meshgrid 为3维点生成x和y的网格ndgrid 生成多维函数和插值的数组pchip 分段3次Hermite插值多项式ppval 分段多项式的值spline 3次样条数据插值绘图函数bar 竖直条图barh 水平条图hist 直方图histc 直方图计数hold 保持当前图形loglog x,y对数坐标图pie 饼状图plot 绘二维图polar 极坐标图semilogy y轴对数坐标图semilogx x轴对数坐标subplot 绘制子图bar3 数值3D竖条图 bar3h 水平3D条形图comet3 3D慧星图cylinder 圆柱体fill3 填充的3D多边形plot3 3维空间绘图quiver3 3D震动(速度)图slice 体积薄片图sphere 球stem3 绘制离散表面数据wate***ll 绘制瀑布trisurf 三角表面clabel 增加轮廓标签到等高线图中datetick 数据格式标记grid 加网格线gtext 用鼠标将文本放在2D图中legend 图注plotyy 左右边都绘Y轴title 标题xlabel X轴标签ylabel Y轴标签zlabel Z轴标签contour 等高线图contourc 等高线计算contourf 填充的等高线图hidden 网格线消影meshc 连接网格/等高线mesh 具有参考轴的3D网格peaks 具有两个变量的采样函数surf 3D阴影表面图su***ce 建立表面低层对象surfc 海浪和等高线的结合surfl 具有光照的3D阴影表面trimesh 三角网格图二Matlab常用指令1、通用信息查询(General information)demo 演示程序help 在线帮助指令helpbrowser 超文本文档帮助信息helpdesk 超文本文档帮助信息helpwin 打开在线帮助窗info MATLAB 和MathWorks 公司的信息subscribe MATLAB 用户注册ver MATLAB 和TOOLBOX 的版本信息version MATLAB 版本whatsnew 显示版本新特征2、工作空间管理(Managing the workspace)clear 从内存中清除变量和函数exit 关闭MATLAB load 从磁盘中调入数据变量pack 合并工作内存中的碎块quit 退出MATLAB save 把内存变量存入磁盘who 列出工作内存中的变量名whos 列出工作内存中的变量细节workspace 工作内存浏览器3 、管理指令和函数(Managing commands and functions)edit 矩阵编辑器edit 打开M 文件inmem 查看内存中的P 码文件mex 创建MEX 文件open 打开文件pcode 生成P 码文件type 显示文件内容what 列出当前目录上的M、MAT、MEX 文件which 确定指定函数和文件的位置4 、搜索路径的管理(Managing the seach patli)addpath 添加搜索路径rmpath 从搜索路径中删除目录path 控制MATLAB 的搜索路径pathtool 修改搜索路径5、指令窗控制(Controlling the command window)beep 产生beep 声echo 显示命令文件指令的切换开关diary 储存MATLAB 指令窗操作内容format 设置数据输出格式more 命令窗口分页输出的控制开关6、操作系统指令(Operating system commands)cd 改变当前工作目录computer 计算机类型copyfile 文件拷贝delete 删除文件dir 列出的文件dos 执行dos 指令并返还结果getenv 给出环境值ispc MATLAB 为PC(Windows)版本则为真isunix MATLAB 为Unix 版本则为真mkdir 创建目录pwd 改变当前工作目录unix 执行unix 指令并返还结果vms 执行vms dcl 指令并返还结果web 打开web 浏览器! 执行外部应用程序三Matlab运算符和特殊算符1、算术运算符(Arithmetic operators)+ 加- 减* 矩阵乘 .* 数组乘^ 矩阵乘方 .^ 数组乘方\ 反斜杠或左除/ 斜杠或右除 ./或.\ 数组除张量积[注]本表第三栏括号中的字符供在线救助时help 指令引述用2、关系运算符(Relational operators)= = 等号~= 不等号< 小于> 大于<= 小于或等于>= 大于或等于3、逻辑操作(Logical operators)& 逻辑与| 逻辑或~ 逻辑非xor 异或any 有非零元则为真all 所有元素均非零则为真4、特殊算符(Special characters):冒号( ) 圆括号[ ] 方括号{ } 花括号@ 创建函数句柄 . 小数点 . 构架域的关节点 .. 父目录? 续行号, 逗号; 分号% 注释号! 调用操作系统命令= 赋值符号ˊ 引号ˊ 复数转置号.ˊ 转置号[,] 水平串接[;] 垂直串接( ),{ },. 下标赋值( ),{ },. 下标标识subsindex 下标标识四Matlab编程语言结构控制语句(Control flow)break 终止最内循环case 同switch 一起使用catch 同try 一起使用continue 将控制转交给外层的for 或while 循环else 同if 一起使用elseif 同if 一起使用end 结束for,while,if 语句for 按规定次数重复执行语句if 条件执行语句otherwise 可同switch 一起使用return 返回switch 多个条件分支try try-cathch 结构while 不确定次数重复执行语句2、计算运行(Evaluation and execution)assignin 跨空间赋值builtin 执行内建的函数eval 字符串宏指令evalc 执行MATLAB 字符串evalin 跨空间计算串表达式的值feval 函数宏指令run 执行脚本文件3、脚本文件、函数及变量(Scripts,function,and variables)exist 检查变量或函数是否被定义function 函数文件头global 定义全局变量isglobal 若是全局变量则为真iskeyword 若是关键字则为真mfilename 正在执行的M 文件的名字persistent 定义永久变量script MATLAB 命令文件4、宗量处理(Augument handling)inputname 实际调用变量名nargchk 输入变量个数检查nargin 函数输入宗量的个数nargout 函数输出宗量的个数nargoutchk 输出变量个数检查varagin 输入宗量varagout 输出宗量5、信息显示(Message display)disp 显示矩阵和文字内容display 显示矩阵和文字内容的重载函数error 显示错误信息fprintf 把格式化数据写到文件或屏幕lasterr 最后一个错误信息lastwarn 最后一个警告信息sprintf 按格式把数字转换为串warning 显示警告信息6 、交互式输入(Interactive input) input 提示键盘输入keyboard 激活键盘做为命令文件pause 暂停uicontrol 创建用户界面控制uimenu 创建用户界面菜单五Matlab基本矩阵函数和操作1、基本矩阵(Elementary matrices)eye 单位阵linspace 线性等分向量logspace 对数等分向量meshgrid 用于三维曲面的分格线坐标ones 全1 矩阵rand 均匀分布随机阵randn 正态分布随机阵repmat 铺放模块数组zeros 全零矩阵: 矩阵的援引和重排2、矩阵基本信息(Basic array information)disp 显示矩阵和文字内容isempty 若是空矩阵则为真isequal 若对应元素相等则为1 islogical 尤其是逻辑数则为真isnumeric 若是数值则为真length 确定向量的长度logical 将数值转化为逻辑值ndims 数组A 的维数size 确定矩阵的维数3、矩阵操作(Matrix manipulateion)blkdiag 块对角阵串接diag 创建对角阵,抽取对角向量end 数组的长度,即最大下标find 找出非零元素1 的下标fliplr 矩阵的左右翻转flipud 矩阵的上下翻转flipdim 交换对称位置上的元素ind2sub 据单下标换算出全下标reshape 矩阵变维rot90 矩阵逆时针90°旋转sub2idn 据全下标换算出单下标tril 抽取下三角阵triu 抽取上三角阵4、特殊变量和常数(Special variables and constants)ans 最新表达式的运算结果eps 浮点相对误差i,j 虚数单位inf 或Inf 无穷大isfinite 若是有限数则为真isinf 若是无穷大则为真isnan 若为非数则为真NaN 或nan 非数pi3.1415926535897?. realmax 最大浮点数realmin 最小正浮点数why 一般问题的简明答案5、特殊矩阵(Specialized matrices)compan 伴随矩阵gallery 一些小测试矩阵hadamard Hadamard 矩阵hankel Hankel 矩阵hilb Hilbert 矩阵invhilb 逆Hilbert 矩阵magic 魔方阵pascal Pascal 矩阵rosser 典型对称特征值实验问题toeplitz Toeplitz 矩阵vander Vandermonde 矩阵wilkinson Wilkinson's 对称特征值实验矩阵六Matlab基本数学函数1、三角函数(Trigonometric)acos 反余弦acosh 反双曲余弦acot 反余切acoth 反双曲余切acsc 反余割acsch 反双曲余割asec 反正割asech 反双曲正割asin 反正弦asinh 反双曲正弦atan 反正切atanh 反双曲正切atan2 四象限反正切cos 余弦cosh 双曲余弦cot 余切coth 双曲余切csc 余割csch 双曲余割sec 正割sech 双曲正割sin 正弦sinh 双曲正弦tan 正切tanh 双曲正切2、指数函数(Exponential)exp 指数log 自然对数log10 常用对数log2 以2 为底的对数nestpow2 最近邻的2 的幂pow2 2 的幂sqrt 平方根3、复数函数(Complex)abs 绝对值angle 相角complex 将实部和虚部构成复数conj 复数共轭cplxpair 复数阵成共轭对形式排列imag 复数虚部isreal 若是实数矩阵则为真real 复数实部unwrap 相位角360°线调整4、圆整和求余函数(Rounding and remainder)ceil 朝正无穷大方向取整fix 朝零方向取整floor 朝负无穷大方向取整mod 模数求余rem 求余数round 四舍五入取整sign 符号函数 6 特殊函数(Specialized math functions) cart2pol 直角坐标变为柱(或极)坐标cart2sph 直角坐标变为球坐标cross 向量叉积dot 向量内积isprime 若是质数则为真pol2cart 柱(或极)坐标变为直角坐标sph2cart 球坐标变为直角坐标七Matlab矩阵函数和数值线性代数1、矩阵分析(Matrix analysis)det 行列式的值norm 矩阵或向量范数normest 估计2 范数null 零空间orth 值空间rank 秩rref 转换为行阶梯形trace迹subspace 子空间的角度2、线性方程(Linear equations)chol Cholesky 分解cholinc 不完全Cholesky 分解cond 矩阵条件数condest 估计1-范数条件数inv 矩阵的逆lu LU 分解luinc 不完全LU 分解lscov 已知协方差的最小二乘积nnls 非负二乘解pinv 伪逆qr QR 分解rcond LINPACK 逆条件数\、/ 解线性方程3、特性值与奇异值(Eigenvalues and singular values)condeig 矩阵各特征值的条件数eig 矩阵特征值和特征向量eigs 多个特征值gsvd 归一化奇异值分解hess Hessenberg 矩阵poly 特征多项式polyeig 多项式特征值问题qz 广义特征值schur Schur 分解svd 奇异值分解svds 多个奇异值4、矩阵函数(Matrix functions)expm 矩阵指数expm1 矩阵指数的Pade 逼近expm2 用泰勒级数求矩阵指数expm3 通过特征值和特征向量求矩阵指数funm 计算一般矩阵函数logm 矩阵对数sqrtm 矩阵平方根5、因式分解(Factorization utility)cdf2rdf 复数对角型转换到实块对角型balance 改善特征值精度的平衡刻度rsf2csf 实块对角型转换到复数对角型八数据分析和傅里叶变换1、基本运算(Basic operations)cumprod 元素累计积cumsum 元素累计和cumtrapz 累计积分hist 统计频数直方图histc 直方图统计max 最大值mean 平均值median 中值min 最小值prod 元素积sort 由小到大排序sortrows 由小到大按行排序std 标准差sum 元素和trapz 梯形数值积分var 求方差2、有限差分(Finite differentces)del2 五点离散Laplacian diff 差分和近似微分gradient 梯度3、相关(Correlation)corrcoef 相关系数cov 协方差矩阵subspace 子空间之间的角度4、滤波和卷积(Filtering and convoluteion)conv 卷积和多项式相乘conv2 二维卷积convn N 维卷积detrend 去除线性分量deconv 解卷和多项式相除filter 一维数字滤波器fliter2 二维数字滤波器5、傅里叶变换(Fourier transforms)fft 快速离散傅里叶变换fft2 二维离散傅里叶变换fftn N 维离散傅里叶变换fftshift 重排fft 和fft2 的输出ifft 离散傅里叶反变换ifft2 二维离散傅城叶反变换ifftn N 维离散傅里叶反变换ifftshift 反fftshift九音频支持1、音频硬件驱动(Audio hardware drivers)sound 播放向量soundsc 自动标刻并播放waveplay 利用系统音频输出设配播放waverecor 利用系统音频输入设配录音2、音频文件输入输出(Audio file import and export)auread 读取音频文件(.au) auwrite 创建音频文件(.au) wavread 读取音频文件(.wav) wavwrite 创建音频文件(.wav)3、工具(Utilities)lin2mu 将线性信号转换为μ 一律编码的信号mu2lin 将μ 一律编码信号转换为线性信号十插补多项式函数1、数据插补(Data Interpolation)griddata 分格点数据griddata3 三维分格点数据griddatan 多维分格点数据interpft 利用FFT 方法一维插补interp1 一维插补interp1q 快速一维插补interp2 二维插补interp3 三维插补intern N 维插补pchip hermite 插补2 、样条插补(Spline Interpolation)ppval 计算分段多项式spline 三次样条插补3 、多项式(Polynomials)conv 多项式相乘deconv 多项式相除poly 由根创建多项式polyder 多项式微分polyfit 多项式拟合polyint 积分多项式分析polyval 求多项式的值polyvalm 求矩阵多项式的值residue 求部分分式表达roots 求多项式的根十一数值泛函函数和ODE 解算器1、优化和寻根(Optimization and root finding)fminbnd 非线性函数在某区间中极小值fminsearch 单纯形法求多元函数极值点指令fzero 单变量函数的零点2、优化选项处理(Optimization Option handling)optimget 从OPTIONS 构架中取得优化参数optimset 创建或修改OPTIONS 构架3、数值积分(Numerical intergration)dblquad 二重(闭型)数值积分指令quad 低阶法数值积分quadl 高阶法数值积分4、绘图(Plotting)ezcontour 画等位线ezcontourf 画填色等位线ezmesh 绘制网格图ezmeshc 绘制含等高线的网格图ezplot 绘制曲线ezplot3 绘制3 维曲线ezpolar 采用极坐标绘图ezsurf 画曲面图ezsurfc 画带等位线的曲面图fplot 画函数曲线图5、内联函数对象(Inline function object)argnames 给出函数的输入宗量char 创建字符传输组或者将其他类型变量转化为字符串数组formula 函数公式inline 创建内联函数6、差微分函数解算器(Differential equation solvers)ode113 变阶法解方程ode15s 变阶法解刚性方程ode23 低阶法解微分方程ode23s 低阶法解刚性微分方程ode23t 解适度刚性微分方程odet23tb 低阶法解刚性微分方程ode45 高阶法解微分方程十二二维图形函数1、基本平面图形(Elementary X-Y graphs)loglog 双对数刻度曲线plot 直角坐标下线性刻度曲线plotyy 双纵坐标图polar 极坐标曲线图semilogx X 轴半对数刻度曲线semilogy Y 轴半对数刻度曲线2 、轴控制(Axis control)axes 创建轴axis 轴的刻度和表现box 坐标形式在封闭式和开启词式之间切换grid 画坐标网格线hold 图形的保持subplot 创建子图zoom 二维图形的变焦放大3、图形注释(Graph annotation)gtext 用鼠标在图上标注文字legend 图例说明plotedit 图形编辑工具text 在图上标注文字texlabel 将字符串转换为Tex 格式title 图形标题xlabel X 轴名标注ylabel Y 轴名标注4、硬拷贝(Hardcopy and printing)orient 设置走纸方向print 打印图形或把图存入文件printopt 打印机设置十三三维图形函数1、基本三维图形(Elementary 3-D plots) fill3 三维曲面多边形填色mesh 三维网线图plot3 三维直角坐标曲线图surf 三维表面图2 、色彩控制(Color control)alpha 透明色控制brighten 控制色彩的明暗caxis (伪)颜色轴刻度colordef 用色风格colormap 设置色图graymon 设置缺省图形窗口为单色显示屏hidden 消隐shading 图形渲染模式whitebg 设置图形窗口为白底3、光照模式(Lighting)diffuse 漫反射表面系数light 灯光控制lighting 设置照明模式material 使用预定义反射模式specular 漫反射surfnorm 表面图的法线surfl 带光照的三维表面图4 、色图(Color maps)autumn 红、黄浓淡色bone 蓝色调灰度图colorcube 三浓淡多彩交错色cool 青和品红浓淡色图copper 线性变化纯铜色调图flag 红-白-蓝黑交错色图gray 线性灰度hot 黑-红-黄-白交错色图hsv 饱和色彩图jet 变异HSV 色图lines 采用plot 绘线色pink 淡粉红色图prism 光谱色图spring 青、黄浓淡色summer 绿、黄浓淡色vga 16 色white 全白色winter 蓝、绿浓淡色5、轴的控制(Axis control)axes 创建轴axis 轴的刻度和表现box 坐标形式在封闭式和开启式之间切换daspect 轴的DataAspectRatio 属性grid 画坐标网格线hold 图形的保持pbaspect 画坐标框的PlotBoxAspectRatio 属性subplot 创建子图xlim X 轴范围ylim Y 轴范围zlim Z 轴范围zoom 二维图形的变焦放大6、视角控制(Viewpoint control)rotate3d 旋动三维图形view 设定3-D 图形观测点viewmtx 观测点转换矩阵7、图形注释(Graph annotation)colorbar 显示色条gtext 用鼠标在图上标注文字plotedit 图形编辑工具text 在图上标注文字title 图形标题xlabel X 轴名标注ylabel Y 轴名标注zlabel Z 轴名标注8 、硬拷贝(Hardcopy and printing)orient 设置走纸方向print 打印图形或把图存入文件printopt 打印机设置verml 将图形保存为VRML2.0 文件十四特殊图形1、特殊平面图形(Specialized 2-D graphs)area 面域图bar 直方图barh 水平直方图comet 彗星状轨迹图compass 从原点出发的复数向量图errorbar 误差棒棒图ezplot 画二维曲线ezpolar 画极坐标曲线feather 从X 轴出发的复数向量图fill 多边填色图fplot 函数曲线图hist 统计频数直方图pareto Pareto 图pie 饼形统计图plotmatrix 散点图阵列scatter 散点图stairs 阶梯形曲线图stem 火柴杆图2 、等高线及二维半图形(Contour and 2-1/2D graphs)clabel 给等高线加标注contour 等高线图contourf 等高线图contour3 三维等高线ezcontour 画等位线ezcontourf 画填色等位线pcolor 用颜色反映数据的伪色图voronoi Voronoi 图3、特殊三维图形(Specialized 3-D graphs)bar3 三维直方图bar3h 三维水平直方图comet3 三维彗星动态轨迹线图ezgraph3 通用指令ezmesh 画网线图ezmeshc 画等位线的网线图ezplot3 画三维曲线ezsurf 画曲面图ezsurfc 画带等位线的曲面图meshc 带等高线的三维网线图meshz 带零基准面的三维网线图pie3 三维饼图ribbon 以三维形式绘制二维曲线scatter3 三维散点图stem3 三维离散杆图surfc 带等高线的三维表面图trimesh 三角剖分网线图trisurf 三角剖分曲面图waterfall 瀑布水线图4、内剖及向量视图(Volume and vector visualization)coneplot 锥体图contourslice 切片等位线图quiver 矢量场图quiver3 三维方向箭头图slice 切片图5、图像显示及文件处理(Image display and file I/O)brighten 控制色彩的明暗colorbar 色彩条状图colormap 设置色图contrast 提高图像对比度的灰色图gray 线性灰度image 显示图像imagesc 显示亮度图像imfinfo 获取图像文件的特征数据imread 从文件读取图像的数据阵(和伴随色图))imwrite 把强度图像或真彩图像写入文件6、影片和动画(Movies and animation)capture 当前图的屏捕捉frame2im 将影片动画转换为编址图像getframe 获得影片动画图像的帧im2frame 将编址图像转换为影片动画movie 播放影片动画moviein 影片动画内存初始化rotate 旋转指令7、颜色相关函数(Color related function)spinmap 颜色周期性变化操纵8、三维模型函数(Solid modeling)cylinder 圆柱面patch 创建块sphere 球面Surf2patch 将曲面数据转换为块数据十五句柄图形1、图形窗的产生和控制(Figure window creation and control)clf 清除当前图close 关闭图形figure 打开或创建图形窗口gcf 获得当前图的柄openfig 打开图形refresh 刷新图形shg 显示图形窗2、轴的产生和控制(Axis creation and control)axes 在任意位置创建轴axis 轴的控制box 坐标形式在封闭式和开启式之间切换caxis 控制色轴的刻度cla 清除当前轴gca 获得当前轴的柄hold 图形的保持ishold 若图形处保持状态则为真subplot 创建子图3、句柄图形对象(Handle Graphics objects)axex 在任意位置创建轴figure 创建图形窗口image 创建图像light 创建光line 创建线patch 创建块rectangle 创建方surface 创建面text 创建图形中文本uicontextmenu 创建现场菜单对象uicontrol 用户使用界面控制uimenu 用户使用菜单控制4、句柄图形处理(Handle Graphics operations)copyobj 拷贝图形对象及其子对象delete 删除对象及文件drawnow 屏幕刷新findobj 用规定的特性找寻对象gcbf "正执行回调操作"的图形的柄gcbo "正执行回调操作"的控件图柄指令gco 获得当前对象的柄get 获得对象特性getappdat 获得应用程序定义数据isappdata 检验是否应用程序定义数据reset 重设对象特性rmappdata 删除应用程序定义数据set 建立对象特性setappdata 建立应用程序定义数据5 、工具函数(Utilities)closereq 关闭图形窗请求函数ishandle 若是图柄代号侧为真newplot 下一个新图十六图形用户界面工具align 对齐用户控件和轴cbedit 编辑回调函数ginput 从鼠标得到图形点坐标guide 设计GUI menu 创建菜单menuedit 菜单编辑propedit 属性编辑uicontrol 创建用户界面控制uimenu 创建用户界面菜单十七字符串1 、通用字符串函数(General)blanks 空格符号cellstr 通过字符串数组构建字符串的元胞数组char 创建字符传输组或者将其他类型变量转化为字符串数组deblank 删除最后的空格double 把字符串变成ASCII 码值eval 执行串形式的MATLAB 表达式2、字符串查询(String tests)iscellstr 若是字符串组成的元胞数组则为真ischar 若是字符串则为真isletter 串中是字母则为真isspace 串中是空格则为真isstr 若是字符串则为真3、字符串操作(String operations)base2dec X-进制串转换为十进制整数bin2dec 二进制串转换为十进制整数dec2base 十进制整数转换为X 进制串dec2bin 十进制整数转换为二进制串dec2hex 十进制整数转换为16 进制串findstr 在一个串中寻找一个子串hex2dec 16-进制串转换为十进制整数hex2num 16-进制串转换为浮点数int2str 将整数转换为字符串lower 把字符串变成小写mat2str 将数组转换为字符串num2str 把数值转换为字符串strcat 把多个串连接成长串strcmp 比较字符串strcmpi 比较字符串(忽略大小写)strings MATLAB 中的字符串strjust 字符串的对齐方式strmatch 逐行搜索串strnomp 比较字符串的前N 个字符strncmpi 比较字符串的前N 个字符(忽略大小写)strrep 用另一个串代替一个串中的子串strtok 删除串中的指定子串strvcat 创建字符串数组str2mat 将字符串转换为含有空格的数组str2num 将字符串转换为数值upper 把字符串变成大写十八文件输入/输出clc 清除指令窗口disp 显示矩阵和文字内容fprintf 把格式化数据写到文件或屏幕home 光标返回行首input 提示键盘输入load 从磁盘中调入数据变量pause 暂停sprintf 写格式数据到串sscanf 在格式控制下读串十九时间和日期clock 时钟cputme MATLAB 战用CPU 时间date 日期etime 用CLOCK 计算的时间now 当前时钟和日期pause 暂停tic 秒表启动toc 秒表终止和显示二十数据类型1、数据类型(Data types)cell 创建元胞变量char 创建字符传输组或者将其他类型变量转化为字符串数组double 转化为16 位相对精度的浮点数值对象function handle 函数句柄inline 创建内联函数JavaArray 构建Java 数组JavaMethod 调用某个Java 方法JavaObject 调用Java 对象的构造函数single 转变为单精度数值sparse 创建稀疏矩阵struct 创建构架变量uint8(unit16、unit32) 转换为8(16、32)位无符号整型数int8(nit16、nit32) 转换为8(16、32)位符号整型数2、多维数组函数(Multi-dimensional array functions)cat 把若干数组串接成高维数组ndims 数组A 的维数ndgrid 为N-D 函数和插补创建数组ipermute 广义反转置permute 广义非共轭转置shiftdim 维数转换squeeze 使数组降维3、元胞数组函数(Cell array functions)cell 创建元胞变量celldisp 显示元胞数组内容cellfun 元胞数组函数cellplot 图示元胞数组的内容cell2struct 把元胞数组转换为构架数组deal 把输入分配给输出is cell 若是元胞则为真num2 cell 把数值数组转换为元胞数组struct2 cell 把构架数组转换为元胞数组4、构架函数(Structure functions)fieldnames 获取构架的域名getfield 获取域的内容isfield 若为给定构架的域名则为真isstruct 若是构架则为真rmfield 删除构架的域setfield 指定构架域的内容struct 创建构架变量5、函数句柄函数(Function handle functions)@ 创建函数句柄functions 列举函数句柄对应的函数func2str 将函数句柄数组转换为字符串str2func 将字符串转换为函数句柄6、面向对象编程(Object oriented programming functions)dlass 查明变量的类型isa 若是指定的数据类型则为真inferiorto 级别较低isjava 若是java 对象则为真isobject 若是对象则为真methods 显示类的方法名substruct 创建构架总量superiorto 级别较高二一示例demo 演示程序flow 无限大水体中水下射流速度数据intro 幻灯演示指令peaks 产生peaks 图形数据二二符号工具包1、微积分(Calculus)diff 求导数limit 求极限int 计算积分jacobian Jacobian 矩阵symsum 符号序列的求和trylor Trylor 级数2、线性代数(Linear Algebra)det 行列式的值diag 创建对角阵,抽取对角向量eig 矩阵特征值和特征向量expm 矩阵指数inv 矩阵的逆jordan Jordan 分解null 零空间poly 特征多项式rank 秩rref 转换为行阶梯形svd 奇异值分解tril 抽取下三角阵triu 抽取上三角阵3、化简(Simplification)collect 合并同类项expand 对指定项展开factor 进行因式或因子分解horner 转换成嵌套形式numden 提取公因式simple 运用各种指令化简符号表达式simplify 恒等式简化subexpr 运用符号变量置换子。
matlab 26个字母

matlab 26个字母摘要:1.MATLAB 简介2.MATLAB 中的26 个字母3.26 个字母在MATLAB 中的应用4.总结正文:MATLAB 是一种广泛使用的数学软件,它主要用于数据分析、可视化和算法开发等领域。
在MATLAB 中,26 个字母代表了26 个常用的函数或操作。
A 代表的是Approximate,用于求解近似值。
B 代表的是Bootstrap,用于生成自助法分布。
C 代表的是Clear,用于清除内存或删除变量。
D 代表的是Disp,用于显示变量的值。
E 代表的是Eig,用于计算矩阵的特征值和特征向量。
F 代表的是File,用于打开或保存文件。
G 代表的是Gcd,用于求两个数的最大公约数。
H 代表的是Help,用于查看帮助文档。
I 代表的是If,用于条件判断。
J 代表的是Jaccard,用于计算集合的相似度。
K 代表的是Kmeans,用于聚类分析。
L 代表的是Load,用于加载文件。
M 代表的是Mean,用于求均值。
N 代表的是Normalize,用于归一化。
O 代表的是Outlier,用于检测异常值。
P 代表的是Polynomial,用于多项式拟合。
Q 代表的是Quartile,用于求四分位数。
R 代表的是Rand,用于生成随机数。
S 代表的是Sort,用于排序。
T 代表的是Table,用于创建表格。
U 代表的是Unique,用于去重。
V 代表的是Var,用于求方差。
W 代表的是Which,用于条件选择。
X 代表的是Xor,用于异或运算。
Y 代表的是Yield,用于产生收益。
Z 代表的是Zscore,用于计算标准分数。
在MATLAB 中,这26 个字母函数或操作被广泛应用,它们可以帮助用户进行各种复杂的数学计算和数据处理。
通过掌握这些字母函数或操作,用户可以更高效地进行数据分析和算法开发。
总的来说,MATLAB 中的26 个字母是一个实用的工具,它们为用户提供了快速、准确和可靠的数学计算和数据处理方法。
matlab常用单词01

Invalid[in’valid]:无效的Valid:有效的,确凿的Description:描述close loop control:闭环控制algorithm[‘algərið(ə)m]:算法、运算法则Feedback:反馈Target:目标Input Parameters:[pə‘ramɪtə]输入参数Incomplete:不完整的、不完全的Expression:表达式、陈述Statement:陈述、说明Variable:可变因素variable names:变量名syntax:句法、规则Remarks:摘要栏、备注Denote:指出、指示Retrieve:恢复、找回Default:违约、弃权Bid:投标、命令Individual:个别的、单独的with the aid of:借助于、通过…的帮助field name:字段名Handle:处理n. 柄;把手;手感;口实vt. 买卖;处理;操作;触摸;运用vi. 易于操纵;搬运Generical:一般的real part:实部、虚部matrix:矩阵format string:格式用字符串sampling time:采样时间rms(Root-Mean-Square):均方根,有效值specify ['spesəfai, -si-] vt. 指定;列举;详细说明;把…列入说明书impedance [im'pi:dəns] 阻抗short-circuit['sə:kit]:短路Breaker 断路器Series:串联Parallel:并联flexible ['fleksibl]adj. 灵活的;柔韧的;易弯曲的transmission[trænz'miʃən, træns-, trɑ:n-]n. 传送;播送;传递;传动装置,变速器resistance [ri'zistəns] n. 抵抗;抵抗力;反抗;电阻;阻力armature resistance 电枢电阻field resistance 励磁回路电阻ohms 电阻单位:欧姆snubber resistance Rs 吸收(缓冲)电阻snubber capacitance Cs 吸收(缓冲)电容inductance [in'dʌktəns]n. 感应系数;自感应;电感induction [in'dʌkʃən]n. 感应;归纳法;感应现象capacitance [kə'pæsitəns]n. 电容;电流容量capacitor [kə'pæsitə]n. 电容器initial [i'niʃəl]adj. 最初的;字首的 vt. 用姓名的首字母签名 n. 词首大写字母implement ['implimənt, 'impliment]vt. 实现,使生效;实施,执行n. 工具,器具;手段parameter [pə'ræmitə]n. 参数;参量;系数nominal ['nɔminəl]adj. 名义上的;有名无实的;票面上的n. 名词性词Nominal poweractive power 有效功率inductive [in'dʌktiv]adj. [电]感应的;[逻]归纳的;诱导的reactive[ri'æktiv, ri:-]adj. 反动的;反应的;电抗的positive ['pɔzətiv, -zi-]adj. 确定的,肯定的;积极的;正的,阳性的;绝对的;实际的,真实的n. 正片;正数asynchronous [ei'siŋkrənəs]adj. 异步的;不同时的;不同期的Asynchronous Machine 交流异步电机synchronous Machine 交流同步电机magnet [ˈmægnit]n.磁铁,磁体;有吸引力的人(或事物)magnetization resistance and reactance 磁化电阻与电感Pemanent magnet synchronous Machine 永磁式同步电机rotor ['rəutə]n. [电]转子;水平旋翼;旋转体Rotor 转子坐标系stator ['steitə]n. 固定片,定子stator winding 定子线圈Stationary 定子坐标系Wound 绕线式Squirrel-cage 鼠笼式dq 定量(definite quantity);configuration [kən,fiɡju'reiʃən]n. 配置;结构;外形preset [pri:'set]vt. 事先调整;事先装置n. 预调装置adj. 预先装置的;预先调整的hpn. 惠普公司abbr. 大功率(High Power);高压(High Pressure);高性能(High Performance);高聚物(High Polymer)mechanical[mi'kænikəl]adj. 机械的;呆板的;力学的;无意识的;手工操作的reference ['refərəns]n. 参考,参照;涉及,提及;参考书目;介绍信;证明书vi. 引用vt. 引用mask [mɑ:sk, mæsk]n. 掩饰;面具;口罩vi. 掩饰;戴面具;化装vt. 掩饰;使模糊;戴面具。
matlab常用关键词

绝对值或复数模abs开平方sqt四舍五入到最接近的整数round除后余数rem以e为底的指数exp自然对数log以10为底的对数log10正弦sin余弦cos正切tan余切cot反正弦asin反正切atan反余切acot双曲正弦sinh双曲余弦coshπpi描点画图plot(x,y,’r’)绿色 b红色r定义变量syms sym清除变量clear(all)显示变量whos因式分解factor多项式展开expand将式子化简simplify求方程的根solve求极限limit(f(x),x,a,’right’) 无穷大inf求导diff(f,x,n)带入求值subs(y,x1,x2)泰勒展开taylor(y,10,1)求函数局部极小值fminbnd(f,x1,x2)求不定积分int(f)求定积分int(f,x1,x2)定积分的数值解法quadl,quad(f,x1,x2)这里的f定义上与数组类似。
给出固定位数的数值vap(s,8)绘制三维曲线plot3(x,y,z)绘制网格图mesh(x,y,z)绘制表格图surf(x,y,z)构造x-y平面上自变量的格点矩阵[x,y]=meshgrid(x,y)绘制出瀑布图形waterfall(x,y,z)绘制三维等高线图形contour3(x,y,z)多元函数求极限limit(limit(f,x,x0),y,y0) 多元函数的偏导数diff(diff(f,x,2),y,3)矩形区域二重积分的数值解dblquad(f,x0,x1,y0,y1) 离散函数定义(与数组运算类似,需加点)inline(‘f’,’x’,’y’)一般区域二重积分的数值解quad2dggen(f,x1,x2,y1,y2)quad2dggen(f,y1,y2,x1,x2,eps) 三重积分triplequad第一类线积分作变化ds=sqrt(diff(x,t)^2+ diff(y,t)^2+ diff(z,t)^2)dt变为一重积分(这里t 可以为x,y,z 或其它)第二类线积分 第一类面积分 第二类面积分数组求和 sum符号序列求和 symsum(f,v,a,b) 正无穷 inf求微分方程的解析解 dsolve(‘方程1’,’方程2’…’方程n ’,’初始条件’,’自变量’)例:2u 1du+=dt输入命令dsolve (’Du=1+u^2’,’t ’) 高阶微分 Dn (n 代表阶数)[x,y,z]=dsolve('Dx=2*x-3*y+3*z','Dy=4*x-5*y+3*z','Dz=4*x-4*y+2*z', 't');x=simple(x) % 将x 化简y=simple(y)例3 求微分方程组的通解. ⎪⎪⎪⎩⎪⎪⎪⎨⎧+-=+-=+-=z y x dtdz z y x dtdyz y x dt dx244354332z=simple(z)用Matlab 求常微分方程的数值解例:求解常微分方程2'222y y x x =-++,00.5x ≤≤,(0)1y =x=0:0.01:0.5;fun=inline('-2*y+2*x*x+2*x'); [x,y]=ode15s(fun,[0:0.01:0.5],1)隐函数的导数 maple('implicitdiff(f(u,x,y,z,…,)=0,u,x)') 多项式求根 roots(p)也可以 f = @(x)x.^3-2*x-5; z = fzero(f,2)e exp(1)erf(x)表示函数:erf(x)=(2/根号下派)*(exp(-z 方)对z 积分,积分下限是0,上限是x),误差函数从形式上很像正态分布的分布函数Φ(x),是对一个形如正态分布的概率密度函数做变上限积分的结果conj 共轭一次多项式拟合: p1 = polyfit(x,y,1) 三次多项式拟合: p3 = polyfit(x,y,3) 带入求多项式的值 y=polyval(p,x)这里的p 为多项式的系数向量,x 为给定的x 向量 一维数组的创建 方法1 a=1:2:10方法2 a=[1,2,3,4,5]方法3 x=linspace(x1, x2, n)这里的x1为第一个元素,x2为第二个元素 n 为元素的个数ones 生成全1矩阵 例ones(3) ones(3,4) zeros 生成全0矩阵大小 size Length 列数例3-9 计算⎰--332/221dx ex π解:先定义函数,文件名:f.mfunction y=f(x)y=1/sqrt(2*pi)*exp(-x.^2/2);保存后,在命令窗口键入format long>> [y,n]=quad('f',-3,3)则显示结果为:y =0.99729991863154n =57 (表示被积函数f 的调用次数)例3-10 计算⎰⎰--=Ddxdy y x I )2(21其中D 为直线y = x 和抛物线y = x 2所围部分。
matlab中常用数学词汇

数学词汇出处:作者:(转载)FanE『翻译中国』 2004-6-9 22:21:18English Chineseabbreviation 简写符号;简写abscissa 横坐标absolute complement 绝对补集absolute error 绝对误差absolute inequality 绝不等式absolute maximum 绝对极大值absolute minimum 绝对极小值absolute monotonic 绝对单调absolute value 绝对值accelerate 加速acceleration 加速度acceleration due to gravity 重力加速度; 地心加速度accumulation 累积accumulative 累积的accuracy 准确度act on 施于action 作用; 作用力acute angle 锐角acute-angled triangle 锐角三角形add 加addition 加法addition formula 加法公式addition law 加法定律addition law(of probability) (概率)加法定律additive inverse 加法逆元; 加法反元additive property 可加性adjacent angle 邻角adjacent side 邻边adjoint matrix 伴随矩阵algebra 代数algebraic 代数的algebraic equation 代数方程algebraic expression 代数式algebraic fraction 代数分式;代数分数式algebraic inequality 代数不等式algebraic number 代数数algebraic operation 代数运算algebraically closed 代数封闭algorithm 算法系统; 规则系统alternate angle (交)错角alternate segment 内错弓形alternating series 交错级数alternative hypothesis 择一假设; 备择假设; 另一假设altitude 高;高度;顶垂线;高线ambiguous case 两义情况;二义情况amount 本利和;总数analysis 分析;解析analytic geometry 解析几何angle 角angle at the centre 圆心角angle at the circumference 圆周角angle between a line and a plane 直 与平面的交角angle between two planes 两平面的交角angle bisection 角平分angle bisector 角平分线 ;分角线angle in the alternate segment 交错弓形的圆周角angle in the same segment 同弓形内的圆周角angle of depression 俯角angle of elevation 仰角angle of friction 静摩擦角; 极限角angle of greatest slope 最大斜率的角angle of inclination 倾斜角angle of intersection 相交角;交角angle of projection 投射角angle of rotation 旋转角angle of the sector 扇形角angle sum of a triangle 三角形内角和angles at a point 同顶角angular displacement 角移位angular momentum 角动量angular motion 角运动angular velocity 角速度annum(X% per annum) 年(年利率X%)anti-clockwise direction 逆时针方向;返时针方向anti-clockwise moment 逆时针力矩anti-derivative 反导数; 反微商anti-logarithm 逆对数;反对数anti-symmetric 反对称apex 顶点approach 接近;趋近approximate value 近似值approximation 近似;略计;逼近Arabic system 阿刺伯数字系统arbitrary 任意arbitrary constant 任意常数arc 弧arc length 弧长arc-cosine function 反余弦函数arc-sin function 反正弦函数arc-tangent function 反正切函数area 面积Argand diagram 阿根图, 阿氏图argument (1)论证; (2)辐角argument of a complex number 复数的辐角argument of a function 函数的自变量arithmetic 算术arithmetic mean 算术平均;等差中顶;算术中顶arithmetic progression 算术级数;等差级数arithmetic sequence 等差序列arithmetic series 等差级数arm 边array 数组; 数组arrow 前号ascending order 递升序ascending powers of X X 的升幂assertion 断语; 断定associative law 结合律assumed mean 假定平均数assumption 假定;假设asymmetrical 非对称asymptote 渐近asymptotic error constant 渐近误差常数at rest 静止augmented matrix 增广矩阵auxiliary angle 辅助角auxiliary circle 辅助圆auxiliary equation 辅助方程average 平均;平均数;平均值average speed 平均速率axiom 公理axiom of existence 存在公理axiom of extension 延伸公理axiom of inclusion 包含公理axiom of pairing 配对公理axiom of power 幂集公理axiom of specification 分类公理axiomatic theory of probability 概率公理论axis 轴axis of parabola 拋物线的轴axis of revolution 旋转轴axis of rotation 旋转轴axis of symmetry 对称轴back substitution 回代bar chart 棒形图;条线图;条形图;线条图base (1)底;(2)基;基数base angle 底角base area 底面base line 底线base number 底数;基数base of logarithm 对数的底basis 基Bayes' theorem 贝叶斯定理bearing 方位(角);角方向(角)bell-shaped curve 钟形图belong to 属于Bernoulli distribution 伯努利分布Bernoulli trials 伯努利试验bias 偏差;偏倚biconditional 双修件式; 双修件句bijection 对射; 双射; 单满射bijective function 对射函数; 只射函数billion 十亿bimodal distribution 双峰分布binary number 二进数binary operation 二元运算binary scale 二进法binary system 二进制binomial 二项式binomial distribution 二项分布binomial expression 二项式binomial series 二项级数binomial theorem 二项式定理bisect 平分;等分bisection method 分半法;分半方法bisector 等分线 ;平分线Boolean algebra 布尔代数boundary condition 边界条件boundary line 界(线);边界bounded 有界的bounded above 有上界的;上有界的bounded below 有下界的;下有界的bounded function 有界函数bounded sequence 有界序列brace 大括号bracket 括号breadth 阔度broken line graph 折线图calculation 计算calculator 计算器;计算器calculus (1) 微积分学; (2) 演算cancel 消法;相消canellation law 消去律canonical 典型; 标准capacity 容量cardioid 心脏Cartesian coordinates 笛卡儿坐标Cartesian equation 笛卡儿方程Cartesian plane 笛卡儿平面Cartesian product 笛卡儿积category 类型;范畴catenary 悬链Cauchy sequence 柯西序列Cauchy's principal value 柯西主值Cauchy-Schwarz inequality 柯西- 许瓦尔兹不等式central limit theorem 中心极限定理central line 中线central tendency 集中趋centre 中心;心centre of a circle 圆心centre of gravity 重心centre of mass 质量中心centrifugal force 离心力centripedal acceleration 向心加速度centripedal force force 向心力centroid 形心;距心certain event 必然事件chain rule 链式法则chance 机会change of axes 坐标轴的变换change of base 基的变换change of coordinates 坐标轴的变换change of subject 主项变换change of variable 换元;变量的换characteristic equation 特征(征)方程characteristic function 特征(征)函数characteristic of logarithm 对数的首数; 对数的定位部characteristic root 特征(征)根chart 图;图表check digit 检验数位checking 验算chord 弦chord of contact 切点弦circle 圆circular 圆形;圆的circular function 圆函数;三角函数circular measure 弧度法circular motion 圆周运动circular permutation 环形排列; 圆形排列; 循环排列circumcentre 外心;外接圆心circumcircle 外接圆circumference 圆周circumradius 外接圆半径circumscribed circle 外接圆cissoid 蔓叶class 区;组;类class boundary 组界class interval 组区间;组距class limit 组限;区限class mark 组中点;区中点classical theory of probability 古典概率论classification 分类clnometer 测斜仪clockwise direction 顺时针方向clockwise moment 顺时针力矩closed convex region 闭凸区域closed interval 闭区间coaxial 共轴coaxial circles 共轴圆coaxial system 共轴系coded data 编码数据coding method 编码法co-domain 上域coefficient 系数coefficient of friction 摩擦系数coefficient of restitution 碰撞系数; 恢复系数coefficient of variation 变差系数cofactor 余因子; 余因式cofactor matrix 列矩阵coincide 迭合;重合collection of terms 并项collinear 共线collinear planes 共线面collision 碰撞column (1)列;纵行;(2) 柱column matrix 列矩阵column vector 列向量combination 组合common chord 公弦common denominator 同分母;公分母common difference 公差common divisor 公约数;公约common factor 公因子;公因子common logarithm 常用对数common multiple 公位数;公倍common ratio 公比common tangent 公切 commutative law 交换律comparable 可比较的compass 罗盘compass bearing 罗盘方位角compasses 圆规compasses construction 圆规作图compatible 可相容的complement 余;补余complement law 补余律complementary angle 余角complementary equation 补充方程complementary event 互补事件complementary function 余函数complementary probability 互补概率complete oscillation 全振动completing the square 配方complex conjugate 复共轭complex number 复数complex unmber plane 复数平面complex root 复数根component 分量component of force 分力composite function 复合函数; 合成函数composite number 复合数;合成数composition of mappings 映射构合composition of relations 复合关系compound angle 复角compound angle formula 复角公式compound bar chart 综合棒形图compound discount 复折扣compound interest 复利;复利息compound probability 合成概率compound statement 复合命题; 复合叙述computation 计算computer 计算机;电子计算器concave 凹concave downward 凹向下的concave polygon 凹多边形concave upward 凹向上的concentric circles 同心圆concept 概念conclusion 结论concurrent 共点concyclic 共圆concyclic points 共圆点condition 条件conditional 条件句;条件式conditional identity 条件恒等式conditional inequality 条件不等式conditional probability 条件概率cone 锥;圆锥(体)confidence coefficient 置信系数confidence interval 置信区间confidence level 置信水平confidence limit 置信极限confocal section 共焦圆锥曲congruence (1)全等;(2)同余congruence class 同余类congruent 全等congruent figures 全等图形congruent triangles 全等三角形conic 二次曲 ; 圆锥曲conic section 二次曲 ; 圆锥曲conical pendulum 圆锥摆conjecture 猜想conjugate 共轭conjugate axis 共轭conjugate diameters 共轭轴conjugate hyperbola 共轭(直)径conjugate imaginary / complex number 共轭双曲conjugate radical 共轭虚/复数conjugate surd 共轭根式; 共轭不尽根conjunction 合取connective 连词connector box 捙接框consecutive integers 连续整数consecutive numbers 连续数;相邻数consequence 结论;推论consequent 条件;后项conservation of energy 能量守恒conservation of momentum 动量守恒conserved 守恒consistency condition 相容条件consistent 一贯的;相容的consistent estimator 相容估计量constant 常数constant acceleration 恒加速度constant force 恒力constant of integration 积分常数constant speed 恒速率constant term 常项constant velocity 怛速度constraint 约束;约束条件construct 作construction 作图construction of equation 方程的设立continued proportion 连比例continued ratio 连比continuity 连续性continuity correction 连续校正continuous 连续的continuous data 连续数据continuous function 连续函数continuous proportion 连续比例continuous random variable 连续随机变量contradiction 矛盾converge 收敛convergence 收敛性convergent 收敛的convergent iteration 收敛的迭代convergent sequence 收敛序列convergent series 收敛级数converse 逆(定理)converse of a relation 逆关系converse theorem 逆定理conversion 转换convex 凸convex polygon 凸多边形convexity 凸性coordinate 坐标coordinate geometry 解析几何;坐标几何coordinate system 坐标系系定理;系;推论coplanar 共面coplanar forces 共面力coplanar lines 共面co-prime 互质; 互素corollary 系定理; 系; 推论correct to 准确至;取值至correlation 相关correlation coefficient 相关系数correspondence 对应corresponding angles (1)同位角;(2)对应角corresponding element 对应边corresponding sides 对应边cosecant 余割cosine 余弦cosine formula 余弦公式cost price 成本cotangent 余切countable 可数countable set 可数集countably infinite 可数无限counter clockwise direction 逆时针方向;返时针方向counter example 反例counting 数数;计数couple 力偶Carmer's rule 克莱玛法则criterion 准则critical point 临界点critical region 临界域cirtical value 临界值cross-multiplication 交叉相乘cross-section 横切面;横截面;截痕cube 正方体;立方;立方体cube root 立方根cubic 三次方;立方;三次(的)cubic equation 三次方程cubic roots of unity 单位的立方根cuboid 长方体;矩体cumulative 累积的cumulative distribution function 累积分布函数cumulative frequecy 累积频数;累积频率cumulative frequency curve 累积频数曲cumulative frequcncy distribution 累积频数分布cumulative frequency polygon 累积频数多边形;累积频率直方图curvature of a curve 曲线的曲率curve 曲线curve sketching 曲线描绘(法)curve tracing 曲线描迹(法)curved line 曲线curved surface 曲面curved surface area 曲面面积cyclic expression 输换式cyclic permutation 圆形排列cyclic quadrilateral 圆内接四边形cycloid 旋输线; 摆线cylinder 柱;圆柱体cylindrical 圆柱形的damped oscillation 阻尼振动data 数据De Moivre's theorem 棣美弗定理De Morgan's law 德摩根律decagon 十边形decay 衰变decay factor 衰变因子decelerate 减速decelaration 减速度decile 十分位数decimal 小数decimal place 小数位decimal point 小数点decimal system 十进制decision box 判定框declarative sentence 说明语句declarative statement 说明命题decoding 译码decrease 递减decreasing function 递减函数;下降函数decreasing sequence 递减序列;下降序列decreasing series 递减级数;下降级数decrement 减量deduce 演绎deduction 推论deductive reasoning 演绎推理definite 确定的;定的definite integral 定积分definition 定义degenerated conic section 降级锥曲线degree (1) 度; (2) 次degree of a polynomial 多项式的次数degree of accuracy 准确度degree of confidence 置信度degree of freedom 自由度degree of ODE 常微分方程次数degree of precision 精确度delete 删除; 删去denary number 十进数denominator 分母dependence (1)相关; (2)应变dependent event(s) 相关事件; 相依事件; 从属事件dependent variable 应变量; 应变数depreciation 折旧derivable 可导derivative 导数derived curve 导函数曲线derived function 导函数derived statistics 推算统计资料; 派生统计资料descending order 递降序descending powers of x x的降序descriptive statistics 描述统计学detached coefficients 分离系数(法)determinant 行列式deviation 偏差; 变差deviation from the mean 离均差diagonal 对角线diagonal matrix 对角矩阵diagram 图; 图表diameter 直径diameter of a conic 二次曲线的直径difference 差difference equation 差分方程difference of sets 差集differentiable 可微differential 微分differential coefficient 微商; 微分系数differential equation 微分方程differential mean value theorem 微分中值定理differentiate 求...的导数differentiate from first principle 从基本原理求导数differentiation 微分法digit 数字dimension 量; 量网; 维(数)direct impact 直接碰撞direct image 直接像direct proportion 正比例direct tax, direct taxation 直接税direct variation 正变(分)directed angle 有向角directed line 有向直线directed line segment 有向线段directed number 有向数direction 方向; 方位direction angle 方向角direction cosine 方向余弦direction number 方向数direction ratio 方向比directrix 准线Dirichlet function 狄利克来函数discontinuity 不连续性discontinuous 间断(的);连续(的); 不连续(的) discontinuous point 不连续点discount 折扣discrete 分立; 离散discrete data 离散数据; 间断数据discrete random variable 间断随机变数discrete uniform distribution 离散均匀分布discriminant 判别式disjoint 不相交的disjoint sets 不相交的集disjunction 析取dispersion 离差displacement 位移disprove 反证distance 距离distance formula 距离公式distinct roots 相异根distincr solution 相异解distribution 公布distributive law 分配律diverge 发散divergence 发散(性)divergent 发散的divergent iteration 发散性迭代divergent sequence 发散序列divergent series 发散级数divide 除dividend (1)被除数;(2)股息divisible 可整除division 除法division algorithm 除法算式divisor 除数;除式;因子divisor of zero 零因子dodecagon 十二边形domain 定义域dot 点dot product 点积double angle 二倍角double angle formula 二倍角公式double root 二重根dual 对偶duality (1)对偶性; (2) 双重性due east/ south/ west /north 向东/ 南/ 西/ 北dynamics 动力学eccentric angle 离心角eccentric circles 离心圆eccentricity 离心率echelon form 梯阵式echelon matrix 梯矩阵edge 棱;边efficient estimator 有效估计量effort 施力eigenvalue 本征值eigenvector 本征向量elastic body 弹性体elastic collision 弹性碰撞elastic constant 弹性常数elastic force 弹力elasticity 弹性element 元素elementary event 基本事件elementary function 初等函数elementary row operation 基本行运算elimination 消法elimination method 消去法;消元法ellipse 椭圆ellipsiod 椭球体elliptic function 椭圆函数elongation 伸张;展empirical data 实验数据empirical formula 实验公式empirical probability 实验概率;经验概率empty set 空集encoding 编码enclosure 界限end point 端点energy 能; 能量entire surd 整方根epicycloid 外摆线equal 相等equal ratios theorem 等比定理equal roots 等根equal sets 等集equality 等(式)equality sign 等号equation 方程equation in one unknown 一元方程equation in two unknowns (variables) 二元方程equation of a straight line 直线方程equation of locus 轨迹方程equiangular 等角(的)equidistant 等距(的)equilateral 等边(的)equilateral polygon 等边多边形equilateral triangle 等边三角形equilibrium 平衡equiprobable 等概率的equiprobable space 等概率空间equivalence 等价equivalence class 等价类equivalence relation 等价关系equivalent 等价(的)error 误差error allowance 误差宽容度error estimate 误差估计error term 误差项error tolerance 误差宽容度escribed circle 旁切圆estimate 估计;估计量estimator 估计量Euclidean algorithm 欧几里德算法Euclidean geometry 欧几里德几何Euler's formula 尤拉公式;欧拉公式evaluate 计值even function 偶函数even number 偶数evenly distributed 均匀分布的event 事件exact 真确exact differential form 恰当微分形式exact solution 准确解;精确解;真确解exact value 法确解;精确解;真确解example 例excentre 外心exception 例外excess 起exclusive 不包含exclusive disjunction 不包含性析取exclusive events 互斥事件exercise 练习exhaustive event(s) 彻底事件existential quantifier 存在量词expand 展开expand form 展开式expansion 展式expectation 期望expectation value, expected value 期望值;预期值experiment 实验;试验experimental 试验的experimental probability 实验概率explicit function 显函数exponent 指数exponential function 指数函数exponential order 指数阶; 指数级express…in terms of…以………表达expression 式;数式extension 外延;延长;扩张;扩充extension of a function 函数的扩张exterior angle 外角external angle bisector 外分角external point of division 外分点extreme point 极值点extreme value 极值extremum 极值face 面factor 因子;因式;商factor method 因式分解法factor theorem 因子定理;因式定理factorial 阶乘factorization 因子分解;因式分解factorization of polynomial 多项式因式分解fallacy 谬误FALSE 假(的)falsehood 假值family 族family of circles 圆族family of concentric circles 同心圆族family of straight lines 直线族feasible solution 可行解;容许解Fermat's last theorem 费尔马最后定理Fibonacci number 斐波那契数;黄金分割数Fibonacci sequence 斐波那契序列fictitious mean 假定平均数figure (1)图(形);(2)数字final velocity 末速度finite 有限finite dimensional vector space 有限维向量空间finite population 有限总体finite probability space 有限概率空间finite sequence 有限序列finite series 有限级数finite set 有限集first approximation 首近似值first derivative 一阶导数first order differential equation 一阶微分方程first projection 第一投影; 第一射影first quartile 第一四分位数first term 首项fixed deposit 定期存款fixed point 定点fixed point iteration method 定点迭代法fixed pulley 定滑轮flow chart 流程图focal axis 焦轴focal chord 焦弦focal length 焦距focus(foci) 焦点folium of Descartes 笛卡儿叶形线foot of perpendicular 垂足for all X 对所有Xfor each /every X 对每一Xforce 力forced oscillation 受迫振动form 形式;型formal proof 形式化的证明format 格式;规格formula(formulae) 公式four leaved rose curve 四瓣玫瑰线four rules 四则four-figure table 四位数表fourth root 四次方根fraction 分数;分式fraction in lowest term 最简分数fractional equation 分式方程fractional index 分数指数fractional inequality 分式不等式free fall 自由下坠free vector 自由向量; 自由矢量frequency 频数;频率frequency distribution 频数分布;频率分布frequency distribution table 频数分布表frequency polygon 频数多边形;频率多边形friction 摩擦; 摩擦力frictionless motion 无摩擦运动frustum 平截头体fulcrum 支点function 函数function of function 复合函数;迭函数functional notation 函数记号fundamental theorem of algebra 代数基本定理fundamental theorem of calculus 微积分基本定理gain 增益;赚;盈利gain perent 赚率;增益率;盈利百分率game (1)对策;(2)博奕Gaussian distribution 高斯分布Gaussian elimination 高斯消去法general form 一般式;通式general solution 通解;一般解general term 通项generating function 母函数; 生成函数generator (1)母线; (2)生成元geoborad 几何板geometric distribution 几何分布geometric mean 几何平均数;等比中项geometric progression 几何级数;等比级数geometric sequence 等比序列geometric series 等比级数geometry 几何;几何学given 给定;已知global 全局; 整体global maximum 全局极大值; 整体极大值global minimum 全局极小值; 整体极小值golden section 黄金分割grade 等级gradient (1)斜率;倾斜率;(2)梯度grand total 总计graph 图像;图形;图表graph paper 图表纸graphical method 图解法graphical representation 图示;以图样表达graphical solution 图解gravitational acceleration 重力加速度gravity 重力greatest term 最大项greatest value 最大值grid lines 网网格线group 组;grouped data 分组数据;分类数据grouping terms 并项;集项growth 增长growth factor 增长因子half angle 半角half angle formula 半角公式half closed interval 半闭区间half open interval 半开区间harmonic mean (1) 调和平均数; (2) 调和中项harmonic progression 调和级数head 正面(钱币)height 高(度)helix 螺旋线hemisphere 半球体;半球heptagon 七边形Heron's formula 希罗公式heterogeneous (1)参差的; (2)不纯一的hexagon 六边形higher order derivative 高阶导数highest common factor(H.C.F) 最大公因子;最高公因式;最高公因子Hindu-Arabic numeral 阿刺伯数字histogram 组织图;直方图;矩形图Holder's Inequality 赫耳德不等式homogeneous 齐次的homogeneous equation 齐次方程Hooke's law 虎克定律horizontal 水平的;水平horizontal asymptote 水平渐近线horizontal component 水平分量horizontal line 横线 ;水平线horizontal range 水平射程hyperbola 双曲线hyperbolic function 双曲函数hypergeometric distribution 超几何分布hypocycloid 内摆线hypotenuse 斜边hypothesis 假设hypothesis testing 假设检验hypothetical syllogism 假设三段论hypotrochoid 次内摆线idempotent 全幂等的identical 全等;恒等identity 等(式)identity element 单位元identity law 同一律identity mapping 恒等映射identity matrix 恒等矩阵identity relation 恒等关系式if and only if/iff 当且仅当;若且仅若if…, then若….则;如果…..则illustration 例证;说明image 像点;像image axis 虚轴imaginary circle 虚圆imaginary number 虚数imaginary part 虚部imaginary root 虚根imaginary unit 虚数单位impact 碰撞implication 蕴涵式;蕴含式implicit definition 隐定义implicit function 隐函数imply 蕴涵;蕴含impossible event 不可能事件improper fraction 假分数improper integral 广义积分; 非正常积分impulse 冲量impulsive force 冲力incentre 内力incircle 内切圆inclination 倾角;斜角inclined plane 斜面included angle 夹角included side 夹边inclusion mapping 包含映射inclusive 包含的;可兼的inclusive disjunction 包含性析取;可兼析取inconsistent 不相的(的);不一致(的) increase 递增;增加increasing function 递增函数increasing sequence 递增序列increasing series 递增级数increment 增量indefinite integral 不定积分idenfinite integration 不定积分法independence 独立;自变independent equations 独立方程independent event 独立事件independent variable 自变量;独立变量indeterminate (1)不定的;(2)不定元;未定元indeterminate coefficient 不定系数;未定系数indeterminate form 待定型;不定型index,indices 指数;指index notation 指数记数法induced operation 诱导运算induction hypothesis 归纳法假设inelastic collision 非弹性碰撞inequality 不等式;不等inequality sign 不等号inertia 惯性;惯量infer 推断inference 推论infinite 无限;无穷infinite dimensional 无限维infinite population 无限总体infinite sequence 无限序列;无穷序列infinite series 无限级数;无穷级数infinitely many 无穷多infinitesimal 无限小;无穷小infinity 无限(大);无穷(大)inflection (inflexion) point 拐点;转折点inherent error 固有误差initial approximation 初始近似值initial condition 原始条件;初值条件initial point 始点;起点initial side 始边initial value 初值;始值initial velocity 初速度initial-value problem 初值问题injection 内射injective function 内射函数inner product 内积input 输入input box 输入inscribed circle 内切圆insertion 插入insertion of brackets 加括号instantaneous 瞬时的instantaneous acceleration 瞬时加速度instantaneous speed 瞬时速率instantaneous velocity 瞬时速度integer 整数integrable 可积integrable function 可积函数integral 积分integral index 整数指数integral mean value theorem 积数指数integral part 整数部份integral solution 整数解integral value 整数值integrand 被积函数integrate 积;积分;......的积分integrating factor 积分因子integration 积分法integration by parts 分部积分法integration by substitution 代换积分法;换元积分法integration constant 积分常数interaction 相互作用intercept 截距;截段intercept form 截距式intercept theorem 截线定理interchange 互换interest 利息interest rate 利率interest tax 利息税interior angle 内角interior angles on the same side of the transversal 同旁内角interior opposite angle 内对角intermediate value theorem 介值定理internal bisector 内分角internal division 内分割internal energy 内能internal force 内力internal point of division 内分点interpolating polynomial 插值多项式interpolation 插值inter-quartile range 四分位数间距intersect 相交intersection (1)交集;(2)相交;(3)交点interval 区间interval estimation 区间估计;区域估计intuition 直观invalid 失效;无效invariance 不变性invariant (1)不变的;(2)不变量;不变式inverse 反的;逆的inverse circular function 反三角函数inverse cosine function 反余弦函数inverse function 反函数;逆函数inverse cosine function 反三角函数inverse function 反函数;逆映射inverse mapping 反向映射;逆映射inverse matrix 逆矩阵inverse problem 逆算问题inverse proportion 反比例;逆比例inverse relation 逆关系inverse sine function 反正弦函数inverse tangent function 反正切函数inverse variation 反变(分);逆变(分)invertible 可逆的invertible matrix 可逆矩阵irrational equation 无理方程irrational number 无理数irreducibility 不可约性irregular 不规则isomorphism 同构isosceles triangle 等腰三角形iterate (1)迭代值; (2)迭代iteration 迭代iteration form 迭代形iterative function 迭代函数iterative method 迭代法jet propulsion 喷气推进joint variation 联变(分);连变(分)kinetic energy 动能kinetic friction 动摩擦known 己知L.H.S. 末项L'Hospital's rule 洛必达法则Lagrange interpolating polynomial 拉格朗日插值多项代Lagrange theorem 拉格朗日定理Lami's law 拉密定律Laplace expansion 拉普拉斯展式last term 末项latent root 本征根; 首通径lattice point 格点latus rectum 正焦弦; 首通径law 律;定律law of conservation of momentum 动量守恒定律law of indices 指数律;指数定律law of inference 推论律law of trichotomy 三分律leading coefficient 首项系数leading diagonal 主对角线least common multiple, lowest common multiple (L.C.M) 最小公倍数;最低公倍式least value 最小值left hand limit 左方极限lemma 引理lemniscate 双纽线length 长(度)letter 文字;字母like surd 同类根式like terms 同类项limacon 蜗牛线limit 极限limit of sequence 序列的极限limiting case 极限情况limiting friction 最大静摩擦limiting position 极限位置line 线;行line of action 作用力线line of best-fit 最佳拟合line of greatest slope 最大斜率的直 ;最大斜率line of intersection 交线line segment 线段linear 线性;一次linear convergence 线性收敛性linear differeantial equation 线性微分方程linear equation 线性方程;一次方程linear equation in two unknowns 二元一次方程;二元线性方程linear inequality 一次不等式;线性不等式linear momentum 线动量linear programming 线性规划linearly dependent 线性相关的linearly independent 线性无关的literal coefficient 文字系数literal equation 文字方程load 负荷loaded coin 不公正钱币loaded die 不公正骰子local maximum 局部极大(值)local minimum 局部极小(值)locus, loci 轨迹logarithm 对数logarithmic equation 对数方程logarithmic function 对数函数logic 逻辑logical deduction 逻辑推论;逻辑推理logical step 逻辑步骤long division method 长除法loop 回路loss 赔本;亏蚀loss per cent 赔率;亏蚀百分率lower bound 下界lower limit 下限lower quartile 下四分位数lower sum 下和lower triangular matrix 下三角形矩阵lowest common multiple(L.C.M) 最小公倍数machine 机械Maclaurin expansion 麦克劳林展开式Maclaurin series 麦克劳林级数magnitude 量;数量;长度;大小major arc 优弧;大弧major axis 长轴major sector 优扇形;大扇形major segment 优弓形;大弓形mantissa 尾数mantissa of logarithm 对数的尾数;对数的定值部many to one 多个对一个many-sided figure 多边形many-valued 多值的map into 映入map onto 映上mapping 映射marked price 标价Markov chain 马可夫链mass 质量mathematical analysis 数学分析mathematical induction 数学归纳法mathematical sentence 数句mathematics 数学matrix 阵; 矩阵matrix addition 矩阵加法matrix equation 矩阵方程matrix multiplication 矩阵乘法matrix operation 矩阵运算maximize 极大maximum absolute error 最大绝对误差maximum point 极大点maximum value 极大值mean 平均(值);平均数;中数mean deviation 中均差;平均偏差mean value theorem 中值定理measure of dispersion 离差的量度measurement 量度mechanical energy 机械能median (1)中位数;(2)中线meet 相交;相遇mensuration 计量;求积法method 方法method of completing square 配方法method of interpolation 插值法; 内插法method of least squares 最小二乘法; 最小平方法method of substitution 代换法;换元法method of successive substitution 逐次代换法; 逐次调替法method of superposition 迭合法metric unit 十进制单位mid-point 中点mid-point formula 中点公式mid-point theorem 中点定理million 百万minimize 极小minimum point 极小点minimum value 极小值Minkowski Inequality 闵可夫斯基不等式minor (1)子行列式;(2)劣;较小的minor arc 劣弧;小弧minor axis 短轴minor of a determinant 子行列式minor sector 劣扇形;小扇形minor segment 劣弓形;小弓形minus 减minute 分mixed number(fraction) 带分数modal class 众数组mode 众数model 模型modulo (1)模; 模数; (2)同余modulo arithmetic 同余算术modulus 模; 模数modulus of a complex number 复数的模modulus of elasticity 弹性模(数)moment arm (1)矩臂; (2)力臂moment of a force 力矩moment of inertia 贯性矩momentum 动量monomial 单项式monotone 单调monotonic convergence 单调收敛性monotonic decreasing 单调递减monotonic decreasing function 单调递减函数monotonic function 单调函数monotonic increasing 单调递增monotonic increasing function 单调递增函数motion 运动movable pulley 动滑轮multinomial 多项式multiple 倍数multiple angle 倍角multiple-angle formula 倍角公式multiple root 多重根multiplicand 被乘数multiplication 乘法multiplication law (of probability) (概率)乘法定律multiplicative inverse 乘法逆元multiplicative property 可乘性multiplicity 重数multiplier 乘数;乘式multiply 乘multi-value 多值的mulually disjoint 互不相交mutually exclusive events 互斥事件mutually independent 独立; 互相独立mutually perpendicular lines 互相垂直n factorial n阶乘n th derivative n阶导数n th root n次根;n次方根n the root of unity 单位的n次根Napierian logarithm 纳皮尔对数; 自然对数natural logarithm 自然对数natural number 自然数natural surjection 自然满射necessary and sufficient condition 充要条件necessary condition 必要条件negation 否定式negative 负negative angle 负角negative binomial distribution 负二项式分布negative index 负指数negative integer 负整数negative number 负数negative vector 负向量; 负矢量neighborhood 邻域net 净(值)net force 净力Newton-Cote's rule 牛顿- 高斯法则Newton-Raphson's method 牛顿- 纳逊方法Newton's formula 牛顿公式Newton's law of motion 牛顿运动定律Newton's method 牛顿方法n-gon n边形nonagon 九边形。
matlab中的英文

单词音标意思函数数学计算功能file abs(x)绝对值或是复数的幅值absolute value preference acos(x)反余弦arc cosinenew acosh(x)反双曲余弦open angle(x)求复数的相角close command window asin(x)反正弦import data asinh(x)反双曲正弦set path atan(x)反正切page setup atan2(x,y)在四象限内求反正切print atanh(x)反双曲正切exit MATLAB ceil(x)对x朝+inf方向取整script conj(x)求共轭复数conjugate complex number function cos(x)余弦cosineclass cosh(x)双曲余弦enumeration exp(x)指数函数exponential function aystem object fix(x)朝原点方向取整figure floor(x)对x朝-inf方向取整variable gcd(m,n)求最大公约数greatest common divisor model imag(x)求复数的虚部GUI lcm(m,n)求最小公倍数least common multiple deployment project log(x)自然对数simulink project log10(x)常用对数debug real(x)求复数的实部parallel rem(m,n)求m/n余数desktap round(x)四舍五入到最近的整数window sign(x)符号函数help sin(x)正弦desktap layout sinh(x)双曲正弦close all documents sqrt(x)求平方根select cluster profile tan(x)正切monitor jobs tanh(x)双曲正切stop if errors e=sym('exp(1)')无理数eall tabbed pi=sym(.pi')无理数pifunction browse特殊矩阵company伴随矩阵diag对角矩阵gallery测试矩阵hadamard矩阵hankel矩阵invhilb希尔伯特逆矩阵kron矩阵magic魔方矩阵pascal帕斯卡矩阵toeplitz托普利兹矩阵vander范德蒙矩阵zeros零矩阵ones一矩阵rand随机矩阵randn服从正态分布的矩阵eye对角线上为1的矩阵meshgrid两个向量生成的矩阵tril取下三角矩阵triu去上三角矩阵trace主对角线元素之和norm矩阵或向量的范数normest估计矩阵的2范数rank求矩阵的秩det求矩阵的行列式orth正交化inv求逆矩阵cond与逆矩阵相关的条件数condest1范数条件数估计chol乔累斯基分解cholinc不完全乔累斯基分解lu LU分解luinc不完全LU分解qr矩阵的正交三角分解。
MATLAB用语翻译
MATLAB用语翻译Three-Phase Source三相电压元件1.Phase-to-phase rms voltage 相间有效值电压2. Internal connection 内部连接方式3. specify impedance usingshort-circuit level 短路阻抗值4. Phase-to-phase rms voltage 相电压5. Phase angle of phase A (degrees) (A相角)degree 度6.Frequency 频率Amplitude(Vrms Ph-Ph)幅值Phase相角7. Source resistance 三相电源电阻8. Source inductance 三相电源电感9. Y型表示中性点不接地;Yn型表示中性点经接地电阻或消弧线圈接地;Yg型表示中性点直接接地。
10. 3-phase short-circuit level at base voltage(VA):Base voltage (Vrms ph-ph):X/R ratio:Three-Phase Programmable V oltage Source三相可编程电压源元件1.Positive-sequence 正序分量2.Time variation of 时变性选项(包括:None ,Amplitude,phase ,frequency;3.Fundamental and/or Harmonic generation 基频和谐波信号发生器,用来设定作用于基频信号的两个高次谐波,包括三个选项,分别是谐波A,谐波B,谐波时限TimingElements 线路元件库1. branch支路元件 Lines输配电线路元件2Circuit Breakers 断路器 Transformers变压器3Series RLC Branch 串联RLC支路元件4.Resistance R电阻Inductance L电感Capacitance C电容Load 负载5.Series RLC Load 串联RLC负载6.Parallel RLC Branch 并联RLC支路元件7. Mutual Inductance 互感元件8. Three-Phase Mutual Inductance Z1-Z0 三相互感元件9. Three-Phase Dynamic Load 三相动力负载设计一个三相动力负载,可以对有功及无功进行设置10. Neutral node 10 中性点11. Surge Arrester 电涌放电器元件Lines 输配电线路元件1.Pi Section Line 集中参数输电线路元件2.Distributed Parameters Line 分布参数输电线路元件3.Three-Phase PI Section Line 三相集中参数输电线路元件:用来构成一个π型等值电路C i r c u i t B r e a k e r s断路器元件1.Snubber resistance迟滞电阻2.Initial state 初始状态3.Snubber capacitance 迟滞电容4.Switching times 转换时间5.Sampl e time of the internal timer 内部计时器采样时间6.External control of switching times 外部控制转换时间7.Measurement s 测量8.Three-Phase Breaker 三相断路器9.Three-Phase Fault 三相故障器元件:在电路系统设计和分析中,经常要模拟线路的各项故障情况,该元件的作用就是模拟设计一个三相故障点,也可以设置成单相或双相短路。
Matlab工具箱数学词汇英汉对照表
附录Ⅱ工具箱数学词汇英汉对照表Ⅱ.1 概率论与数理统计词汇英汉对照表Aabsolute value 绝对值accept 接受acceptable region 接受域additivity 可加性adjusted 调整的alternative hypothesis 对立假设analysis 分析analysis of covariance 协方差分析analysis of variance 方差分析arithmetic mean 算术平均值association 相关性assumption 假设assumption checking 假设检验availability 有效度average 均值Bbalanced 平衡的band 带宽bar chart 条形图beta-distribution 贝塔分布between groups 组间的bias 偏倚binomial distribution 二项分布binomial test 二项检验Ccalculate 计算case 个案category 类别center of gravity 重心central tendency 中心趋势chi-square distribution 卡方分布chi-square test 卡方检验classify 分类cluster analysis 聚类分析coefficient 系数coefficient of correlation 相关系数collinearity 共线性column 列compare 比较comparison 对照components 构成,分量compound 复合的confidence interval 置信区间consistency 一致性constant 常数continuous variable 连续变量control charts 控制图correlation 相关covariance 协方差covariance matrix 协方差矩阵critical point 临界点critical value 临界值crosstab 列联表cubic 三次的,立方的cubic term 三次项cumulative distribution function 累加分布函数curve estimation 曲线估计Ddata 数据default 默认的definition 定义deleted residual 剔除残差density function 密度函数dependent variable 因变量description 描述附录II 工具箱数学词汇英汉对照表·535·design of experiment 试验设计deviations 差异df.(degree of freedom) 自由度diagnostic 诊断dimension 维discrete variable 离散变量discriminant function 判别函数discriminatory analysis 判别分析distance 距离distribution 分布D-optimal design D-优化设计Eeaqual 相等effects of interaction 交互效应efficiency 有效性eigenvalue 特征值equal size 等含量equation 方程error 误差estimate 估计estimation of parameters 参数估计estimations 估计量evaluate 衡量exact value 精确值expectation 期望expected value 期望值exponential 指数的exponential distributon 指数分布extreme value 极值Ffactor 因素,因子factor analysis 因子分析factor score 因子得分factorial designs 析因设计factorial experiment 析因试验fit 拟合fitted line 拟合线fitted value 拟合值fixed model 固定模型fixed variable 固定变量fractional factorial design 部分析因设计frequency 频数F-test F检验full factorial design 完全析因设计function 函数Ggamma distribution 伽玛分布geometric mean 几何均值group 组Hharmomic mean 调和均值heterogeneity 不齐性histogram 直方图homogeneity 齐性homogeneity of variance 方差齐性hypothesis 假设hypothesis test 假设检验Iindependence 独立independent variable 自变量independent-samples 独立样本index 指数index of correlation 相关指数interaction 交互作用interclass correlation 组内相关interval estimate 区间估计intraclass correlation 组间相关inverse 倒数的iterate 迭代Kkernal 核Kolmogorov-Smirnov test柯尔莫哥洛夫-斯米诺夫检验kurtosis 峰度MATLAB 6.1与工程数学应用指南(下册)·536·Llarge sample problem 大样本问题layer 层least-significant difference 最小显著差数least-square estimation 最小二乘估计least-square method 最小二乘法level 水平level of significance 显著性水平leverage value 中心化杠杆值life 寿命life test 寿命试验likelihood function 似然函数likelihood ratio test 似然比检验linear 线性的linear estimator 线性估计linear model 线性模型linear regression 线性回归linear relation 线性关系linear term 线性项logarithmic 对数的logarithms 对数logistic 逻辑的lost function 损失函数Mmain effect 主效应matrix 矩阵maximum 最大值maximum likelihood estimation 极大似然估计mean squared deviation(MSD) 均方差mean sum of square 均方和measure 衡量media 中位数M-estimator M估计minimum 最小值missing values 缺失值mixed model 混合模型mode 众数model 模型Monte Carle method 蒙特卡罗法moving average 移动平均值multicollinearity 多元共线性multiple comparison 多重比较multiple correlation 多重相关multiple correlation coefficient 复相关系数multiple correlation coefficient 多元相关系数multiple regression analysis 多元回归分析multiple regression equation 多元回归方程multiple response 多响应multivariate analysis 多元分析Nnegative relationship 负相关nonadditively 不可加性nonlinear 非线性nonlinear regression 非线性回归noparametric tests 非参数检验normal distribution 正态分布null hypothesis 零假设number of cases 个案数Oone-sample 单样本one-tailed test 单侧检验one-way ANOVA 单向方差分析one-way classification 单向分类optimal 优化的optimum allocation 最优配制order 排序order statistics 次序统计量origin 原点orthogonal 正交的outliers 异常值Ppaired observations 成对观测数据paired-sample 成对样本parameter 参数parameter estimation 参数估计附录II 工具箱数学词汇英汉对照表·537·partial correlation 偏相关partial correlation coefficient 偏相关系数partial regression coefficient 偏回归系数percent 百分数percentiles 百分位数pie chart 饼图point estimate 点估计poisson distribution 泊松分布polynomial curve 多项式曲线polynomial regression 多项式回归polynomials 多项式positive relationship 正相关power 幂P-P plot P-P概率图predict 预测predicted value 预测值prediction intervals 预测区间principal component analysis 主成分分析proability 概率probability density function 概率密度函数probit analysis 概率分析proportion 比例Qqadratic 二次的Q-Q plot Q-Q概率图quadratic term 二次项quality control 质量控制quantitative 数量的,度量的quartiles 四分位数Rrandom 随机的random number 随机数random number 随机数random sampling 随机取样random seed 随机数种子random variable 随机变量randomization 随机化range 极差rank 秩rank correlation 秩相关rank statistic 秩统计量regression analysis 回归分析regression coefficient 回归系数regression line 回归线reject 拒绝rejection region 拒绝域relationship 关系reliability 可靠性repeated 重复的report 报告,报表residual 残差residual sum of squares 剩余平方和response 响应risk function 风险函数robustness 稳健性root mean square 标准差row 行run 游程run test 游程检验Ssample 样本sample size 样本容量sample space 样本空间sampling 取样sampling inspection 抽样检验scatter chart 散点图S-curve S形曲线separately 单独地sets 集合sign test 符号检验significance 显著性significance level 显著性水平significance testing 显著性检验significant 显著的,有效的significant digits 有效数字skewed distribution 偏态分布skewness 偏度MATLAB 6.1与工程数学应用指南(下册)·538·small sample problem 小样本问题smooth 平滑sort 排序soruces of variation 方差来源space 空间spread 扩展square 平方standard deviation 标准离差standard error of mean 均值的标准误差standardization 标准化standardize 标准化statistic 统计量statistical quality control 统计质量控制std. residual 标准残差stepwise regression analysis 逐步回归stimulus 刺激strong assumption 强假设stud. deleted residual 学生化剔除残差stud. residual 学生化残差subsamples 次级样本sufficient statistic 充分统计量sum 和sum of squares 平方和summary 概括,综述Ttable 表t-distribution t分布test 检验test criterion 检验判据test for linearity 线性检验test of goodness of fit 拟合优度检验test of homogeneity 齐性检验test of independence 独立性检验test rules 检验法则test statistics 检验统计量testing function 检验函数time series 时间序列tolerance limits 容许限total 总共,和transformation 转换treatment 处理trimmed mean 截尾均值true value 真值t-test t检验two-tailed test 双侧检验Uunbalanced 不平衡的unbiased estimation 无偏估计unbiasedness 无偏性uniform distribution 均匀分布Vvalue of estimator 估计值variable 变量variance 方差variance components 方差分量variance ratio 方差比various 不同的vector 向量Wweight 加权,权重weighted average 加权平均值within groups 组内的ZZ score Z分数附录II 工具箱数学词汇英汉对照表·539·Ⅱ.2 最优化方法词汇英汉对照表Aactive constraint 活动约束active set method 活动集法analytic gradient 解析梯度approximate 近似arbitrary 强制性的argument 变量attainment factor 达到因子Bbandwidth 带宽be equivalent to 等价于best-fit 最佳拟合bound 边界Ccoefficient 系数complex-value 复数值component 分量constant 常数constrained 有约束的constraint 约束constraint function 约束函数continuous 连续的converge 收敛cubic polynomial interpolation method三次多项式插值法curve-fitting 曲线拟合Ddata-fitting 数据拟合default 默认的,默认的define 定义diagonal 对角的direct search method 直接搜索法direction of search 搜索方向discontinuous 不连续Eeigenvalue 特征值empty matrix 空矩阵equality 等式exceeded 溢出的Ffeasible 可行的feasible solution 可行解finite-difference 有限差分first-order 一阶GGauss-Newton method 高斯-牛顿法goal attainment problem 目标达到问题gradient 梯度gradient method 梯度法Hhandle 句柄Hessian matrix 海色矩阵Iindependent variables 独立变量inequality 不等式infeasibility 不可行性infeasible 不可行的initial feasible solution 初始可行解initialize 初始化inverse 逆invoke 激活iteration 迭代iteration 迭代MATLAB 6.1与工程数学应用指南(下册)·540·JJacobian 雅可比矩阵LLagrange multiplier 拉格朗日乘子large-scale 大型的least square 最小二乘least squares sense 最小二乘意义上的Levenberg-Marquardt method列文伯格-马夸尔特法line search 一维搜索linear 线性的linear equality constraints 线性等式约束linear programming problem 线性规划问题local solution 局部解Mmedium-scale 中型的minimize 最小化mixed quadratic and cubic polynomial interpolation and extrapolation method混合二次、三次多项式内插、外插法multiobjective 多目标的Nnonlinear 非线性的norm 范数Oobjective function 目标函数observed data 测量数据optimization routine 优化过程optimize 优化optimizer 求解器over-determined system 超定系统Pparameter 参数partial derivatives 偏导数polynomial interpolation method多项式插值法Qquadratic 二次的quadratic interpolation method 二次内插法quadratic programming 二次规划Rreal-value 实数值residuals 残差robust 稳健的robustness 稳健性,鲁棒性Sscalar 标量semi-infinitely problem 半无限问题Sequential Quadratic Programming method序列二次规划法simplex search method 单纯形法solution 解sparse matrix 稀疏矩阵sparsity pattern 稀疏模式sparsity structure 稀疏结构starting point 初始点step length 步长subspace trust region method 子空间置信域法sum-of-squares 平方和symmetric matrix 对称矩阵Ttermination message 终止信息termination tolerance 终止容限the exit condition 退出条件the method of steepest descent 最速下降法transpose 转置Uunconstrained 无约束的under-determined system 负定系统附录II 工具箱数学词汇英汉对照表·541·Vvariable 变量vector 矢量Wweighting matrix 加权矩阵Ⅱ.3 样条词汇英汉对照表Aapproximation 逼近array 数组a spline in b-form/b-spline b样条a spline of polynomial piece /ppform spline分段多项式样条Bbivariate spline function 二元样条函数break/breaks 断点Ccoefficient/coefficients 系数cubic interpolation 三次插值/三次内插cubic polynomial 三次多项式cubic smoothing spline 三次平滑样条cubic spline 三次样条cubic spline interpolation三次样条插值/三次样条内插curve 曲线Ddegree of freedom 自由度dimension 维数Eend conditions 约束条件Iinput argument 输入参数interpolation 插值/内插interval 取值区间Kknot/knots 节点Lleast-squares approximation 最小二乘拟合Mmultiplicity 重次multivariate function 多元函数Ooptional argument 可选参数order 阶次output argument 输出参数Ppoint/points 数据点Rrational spline 有理样条rounding error 舍入误差(相对误差)Sscalar 标量sequence 数列(数组)spline 样条spline approximation 样条逼近/样条拟合spline function 样条函数spline curve 样条曲线spline interpolation 样条插值/样条内插spline surface 样条曲面smoothing spline 平滑样条MATLAB 6.1与工程数学应用指南(下册)·542·T tolerance 允许精度U univariate function 一元函数V vector 向量W weight/weights 权重Ⅱ.4 偏微分方程数值解词汇英汉对照表Aabsolute error 绝对误差absolute tolerance 绝对容限adaptive mesh 适应性网格Bboundary condition 边界条件Ccontour plot 等值线图converge 收敛coordinate 坐标系Ddecomposed 分解的decomposed geometry matrix 分解几何矩阵diagonal matrix 对角矩阵Dirichlet boundary conditionsDirichlet边界条件Eeigenvalue 特征值elliptic 椭圆形的error estimate 误差估计exact solution 精确解Ggeneralized Neumann boundary condition推广的Neumann边界条件geometry 几何形状geometry description matrix 几何描述矩阵geometry matrix 几何矩阵graphical user interface(GUI)图形用户界面Hhyperbolic 双曲线的Iinitial mesh 初始网格Jjiggle 微调LLagrange multipliers 拉格朗日乘子Laplace equation 拉普拉斯方程linear interpolation 线性插值loop 循环Mmachine precision 机器精度mixed boundary condition 混合边界条件NNeuman boundary condition Neuman边界条件node point 节点nonlinear solver 非线性求解器normal vector 法向量附录II 工具箱数学词汇英汉对照表·543·PParabolic 抛物线型的partial differential equation 偏微分方程plane strain 平面应变plane stress 平面应力Poisson's equation 泊松方程polygon 多边形positive definite 正定Qquality 质量Rrefined triangular mesh 加密的三角形网格relative tolerance 相对容限relative tolerance 相对容限residual 残差residual norm 残差范数Ssingular 奇异的sparce matrix 稀疏矩阵stiffness matrix 刚度矩阵subregion 子域Ttriangular mesh 三角形网格Uundetermined 未定的uniform refinement 均匀加密uniform triangle net 均匀三角形网络Wwave equation 波动方程。
MATLAB部分词汇
MATLAB软件数值计算简单词汇:1、简单命令词汇:1.1 特殊常量和变量表1.2 数学函数1.3 M函数格式为:1.4 创建简单的数组:linspace、logspace:x=linspace(first,last,n) 创建从first开始,到last结束,有n个元素的等分隔行向量;x=logspace(first,last,n) 创建从first开始,到last结束,有n个元素的对数分隔行向量。
1.5 MATLAB提供三种决策或控制流结构:1.5.1 for循环:1.5.3 if-else-end结构:(1)有一个选择的一般形式是:(2)有三个或更多的选择的一般形式是:1.6 简单高级编程简单用词:1.7 在线帮助:1.8 文件管理:1.9基础符号运算函数:1.10 数字显示2、简单作图命令词汇:2.1 平面曲线图:plot:plot(X,Y,S)2.2 符号函数(显函数、隐函数和参数方程)画图(1)ezplotezplot('f(x)',[a,b]) 表示在a<x<b绘制显函数f=f(x)的函数图。
ezplot('f(x,y)',[xmin,xmax,ymin,ymax])表示在区间xmin<x<xmax和ymin<y<ymax绘制隐函数f(x,y)=0的函数图。
ezplot(' x(t) ', ' y(t) ',[tmin,tmax])表示在区间tmin<t<tmax 绘制参数方程x=x(t),y=y(t)的函数图。
(2)fplotfplot('fun',lims)表示绘制字符串fun指定的函数在lims=[xmin,xmax]的图形2.3 空间曲线(1)一条曲线plot3(x,y,z,s)其中x,y,z为n维向量(2)多条曲线plot3(x,y,z)其中x,y,z是都是m×n矩阵2.4空间曲面(1)surf(x,y,z)画出数据点(x,y,z)表示的曲面(2)mesh(x,y,z)画网格曲面,2.5图形处理:2.5.1 在图形上加格栅、图例和标注(1)grid on加格栅在当前图上;grid off删除格栅。
matlab常用单词04
usage ['ju:zidʒ] n. 用法;使用;惯例content ['kɔntent] n. 内容,目录;容量;满足adj. 满意的vt. 使满足par [pɑ:] n. 票面价值;平均数量;标准adj. 标准的;票面的scalar ['skeilə, -lɑ:] adj. 数量的;标量的;梯状的,分等级的n. 数量;标量prop [prɔp] vt. 支撑;维持n. 支柱;支持者indicate ['indikeit] vt. 指出;表明;象征;预示domain [dəu'mein] n. 领域;产业;地产;[计]域名symbolic [sim'bɔlik] adj. 使用符号的;象征的;[语]符号的pulse [pʌls] n. 脉搏;脉冲vt. 使跳动vi. 跳动,脉跳minus ['mainəs] prep. 减,减去n. 不足;负号,减号;负数adj. 负的;减的interpret [in'tə:prit] vt. 说明;口译vi. 解释;翻译sample ['sɑ:mpl, 'sæ-] vt. 取样;抽样检查;尝试n. 样品;样本;例子adj. 作为例子的;试样的,样品的inherited [in'heritid] adj. 遗传的;继承权的;通过继承得到的v. 继承;经遗传而得(inherit的过去分词)trigger ['triɡə] vt. 触发;引发,引起vi. 松开扳柄n. 触发器;扳机;制滑机latch [lætʃ] vi. 闭锁;占有,抓住vt. 闩上;纠缠住某人n. 门闩buffer ['bʌfə] n. 缓冲器,减震器;缓冲区vt. 缓冲execute ['eksikju:t] vt. 执行;实行;处死explicitly adv. 明确地;明白地attribute [ə'tribju:t, 'ætribju:t] n. 属性;特质vt. 把…归于;归属decimation [,desi'meiʃən] n. 大批杀害;每十人杀一人;大量毁灭;精度correspond [,kɔ:ri'spɔnd] vi. 符合,一致;相应;通信amplitude ['æmplitju:d] n. 振幅;广阔;丰富,充足criterion [krai'tiəriən] n. (批评判断的)标准;准则;准据;规范threshold['θreʃhəuld] n. 极限;门槛;入口;开始;临界值configure [kən'fiɡə] vt. 使成形;安装configuration [kən,fiɡju'reiʃən] n. 配置;结构;外形diagrammatic [,daiəɡrə'mætik,-kəl] adj. 概略的;图表的;图解的option ['ɔpʃən] n. 选择权;选项;[经]买卖的特权ideal [ai'diəl] adj. 理想的;完美的;想象的;不切实际的n. 理想;典范virtual['və:tʃuəl] adj. 实质上的,事实上的;虚拟的;[物]有效的nonvirtualhybrid ['haibrid] n. 混合物;杂种,混血儿adj. 杂种的;混合的phase position 相位Stepper Motor 步进电机extrapolation [ek,stræpə'leiʃən] n. 推断;外推法interpolate [in'tə:pəuleit] vt. 篡改;插入新语句vi. 插入;篡改interpolate [in'tə:pəuleit] vt. 篡改;插入新语句vi. 插入;篡改index ['indeks] n. 指数;索引;指标;指针vi. 做索引vt. 指出;编入索引中indexing['indeksiŋ]n. [计]标引;指标化;[经]编制指数v. 编入索引中;指出(index的ing形式)dialog ['daiəlɔɡ] n. 对话;会话modulus ['mɔdjuləs, -dʒu-] n. 模数;系数compact [kəm'pækt, 'kɔmpækt] n. 合同,契约;小粉盒adj. 紧凑的,紧密的;简洁的vt. 使紧密结合;使简洁shortcut ['ʃɔ:tkʌt] n. 捷径;被切短的东西[电脑]快捷方式append [ə'pend] vt. 附加;贴上;盖章n. [计]设置数据文件的搜索路径complex ['kɔmpleks] adj. 复杂的;合成的n. 复合体;综合设施;复数绝对值[jué duì zhí] {物} {数} bsolute value,absolute,modulusmodulus ['mɔdjuləs, -dʒu-] n. 模数;系数absolute ['æbsəlju:t, ,æbsə'lju:t] adj. 绝对的;完全的;专制的n. 绝对事物;绝对occurrence [ə'kə:rəns, -'kʌ-] n. 事件;发生;出现;发现column ['kɔləm] n. 圆柱,柱形物;纵队,列;专栏【矩阵】列script [skript]n. 手迹;脚本;书写用的字母vt. 把…改编为剧本vi. 写电影脚本subscript ['sʌbskript] adj. 写在下方的;下标的;脚注的n. 下标;脚注bracket ['brækit] n. 支架;括号;墙上凸出的托架vt. 括在一起;把…归入同一类;排除rounded ['raundid] adj. 圆形的;丰满的;全面的denominate [di'nɔmineit, di'nɔminit] vt. 为…命名;把…称作…adj. 有特定名称的descend [di'send] vi. 下降;下来;遗传;屈尊;下去vt. 下去;沿…向下previous ['pri:vjəs] adj. 以前的;早先的;过早的adv. 在…以前;在先contents ['kɔntents] n. 目录;内容;要旨(content的复数)v. 使满意(content的三单形式)icon ['aikɔn] n. 图标;肖像,画像;圣像;偶像multiplex ['mʌltipleks] adj. 多样的,多元的;多路传输的vi. 多工;多路传输vt. 多路传输n. 多倍仪;多重通道quantization [,kwɔntai'zeiʃən, -ti'z-] n. 分层;量子化;数字化infinity [in'finəti] n. 无穷;无限大;无限距train [trein] n. 火车;行列;长队;裙裾v. 训练;培养;瞄准initiate [i'niʃieit, i'niʃiət, -eit] vt. 开始,创始;发起;使初步了解n. 开始;新加入者,接受初步知识者adj. 新加入的;接受初步知识的exponential [,ekspəu'nenʃəl] adj. 指数的n. 指数power [pauə] n. 能力;力量;功率;幂;势力;政权vt. 激励;供以动力;使…有力量vi. 快速前进adj. 借影响有权势人物以操纵权力的modulus ['mɔdjuləs, -dʒu-] n. 模数;系数copyright ['kɔpi,rait] n. 版权,著作权adj. 受版权保护的;版权的vt. 保护版权;为…取得版权resolver [ri:'zɔlvə] n. 分解器;下决心者;[化]溶剂gambol ['ɡæmbəl] vi. 雀跃;耍闹n. 雀跃;嬉戏Synchro Resolver 同步旋变器???custom ['kʌstəm] n. 风俗;习惯;海关adj.定制的,定做的customizing n. 定制;客户化;按用户要求制做v. 定做(customize的ing形式)desktop ['desktɔp] n. 桌面;台式机flip [flip] vt. 轻击;掷vi. 用指轻弹;蹦跳adj. 无礼的;轻率的n. 筋斗;弹flip name (format下的一个选项,点击它可以改变模块名字相对于模块的上下位置)。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
flip block (format下的一个选项,点击它可以改变模块连接符相对于模块的左右位置)clockwise ['klɔkwaiz] adv. 顺时针方向地adj. 顺时针方向的(format下的选项)counterclockwise adv. 逆时针方向地adj. 逆时针方向的(format下的选项)
advisor [əd'vaizə] n. 顾问;劝告者;指导教师
font [fɔnt] n. 字体;字形;洗礼盘,圣水器;泉
sink[siŋk] vi. 下沉;消沉;渗透vt. 使下沉;挖掘;使低落n. 水槽;洗涤槽;污水坑terminator ['tə:mineitə] n. 明暗界限;终结者;终止子
align [ə'lain] vt. 使结盟;使成一行;匹配vi. 排列;排成一行
alignment [ə'lainmənt] n. 结盟;队列,成直线;校准
foreground ['fɔ:ɡraud] n. 最显著的位置;前景
indicator ['indikeitə] n. 指示器;压力计;[化]指示剂;[计]指示符
annotation [,ænəu'teiʃən] n. 注释;注解;释文
switch vt. 转换;用鞭子等抽打;vi. 转换;抽打;[体]换防;n. 开关;转换;鞭子
rooting['ru:tiŋ] adj. 生根的v. 生根;使站立不动;牢固地树立(root的现在分词)
routing['ru:tiŋ, 'rau-] n. 路由选择;选择途径;工艺路线
v. 按指定路线发送;为…规定路线(route的ing形式)
ramp [ræmp] n. 斜坡,坡道;敲诈vi. 蔓延;狂跳乱撞;敲诈vt. 敲诈;使有斜面
truncate ['trʌŋkeit, trʌŋ'keit, 'trʌŋk-] adj. 截短的;被删节的vt. 把…截短;缩短;[物]使成平面assistant [ə'sistənt] n. 助手,助理,助教adj. 辅助的,助理的;有帮助的
accessibility [ək,sesə'biləti] n. 易接近;可亲;可以得到
graph [ɡrɑ:f, ɡræf] n. [数]图表;曲线图vt. 用曲线图表示
version ['və:ʃən] n. 译文;版本;[医]倒转术
callback ['kɔ:lbæk] n. 回叫信号;回收
identify [ai'dentifai] vt. 识别;确定;使参与;把…看成一样vi. 认同;一致;确定
derive [di'raiv] vt. 得自;源于vi. 起源
radar ['reidə] n. 雷达,无线电探测器
transpose [træns'pəuz, trænz-, trɑ:n-] vt. 移项;调换;颠倒顺序vi. 进行变换n. 转置阵denominator 分母
分子[fēn zǐ] {数} numerator (in a fraction),{化} molecule,member,elememt
reorder [ri:'ɔ:də] vt. 再订购;重新整理vi. 再订购n. 再订购
specified adj. 规定的;详细说明的v. 指定;详细说明(specify的过去分词)
matlab=matrix laboratory
laboratory[lə'bɔrətəri] n. 实验室,研究室
symbolic [sim'bɔlik] adj. 使用符号的;象征的;[语]符号的
override [,əuvə'raid] vt. 推翻;不顾;践踏n. 代理佣金
notation [nəu'teiʃən] n. 符号;注释;记号法;乐谱
boolean adj. 布尔数学体系的
Permanent Magnet Synchronous Machine 永磁同步电机(正弦波永磁无刷直流电机)BLDC 方波永磁无刷直流电机
permanent ['pə:mənənt] adj. 永久的,永恒的;不变的n. [口]烫发(等于permanent wave)magnet ['mæɡnit] n. 磁铁;磁石;磁体
synchronous['siŋkrənəs] adj. 同步的;同时的
compatibly adv. 适合地;协调地;相互兼容地
convergent [kən'və:dʒənt] adj. 收敛的;会聚性的;趋集于一点的
reciprocal [ri'siprəkəl] adj. 相互的;互惠的;倒数的,彼此相反的n. 倒数;互相起作用的事物interpolate [in'tə:pəuleit] vt. 篡改;插入新语句vi. 插入;篡改
stable ['steibl] n. 马厩;牛棚adj. 稳定的;坚定的;牢固的vi. 被关在马厩vt. 赶入马房encapsulate [in'kæpsəleit] vt. 压缩;将…装入胶囊;将…封进内部vi. 形成胶囊
dot [dɔt] n. 点,圆点;嫁妆vi. 打上点vt. 加小点于
notation [nəu'teiʃən] n. 符号;注释;记号法;乐谱
reference ['refərəns] n. 参考,参照;涉及,提及;参考书目;介绍信;证明书vi. 引用vt. 引用damping['dæmpiŋ] n. 阻尼;衰减,减幅v. 使潮湿;抑制(damp的ing形式)
parse [pɑ:z] vt. 从语法上分析;解析vi. 理解;从语法上分析n. 从语法上分析;分列
parsing ['pɑ:siŋ] n. 剖析;[计]语法分析v. 解析(parse的ing形式)
execution [,eksi'kju:ʃən] n. 执行,实行;完成;死刑
assigned adj. 已分配的;指定的v. 指定;委派;分配(assign的过去分词
subscript ['sʌbskript] adj. 写在下方的;下标的;脚注的n. 下标;脚注
diode ['daiəud] n. [电]二极管
mosfet abbr. 金属氧化物半导体场效应晶体管(Metal-Oxide -Semiconductor Field Effect Transistor)其符号中“d”代表drain,漏极;“s”代表source,源极;g代表gate,逻辑门。
igbt abbr. 绝缘栅门极晶体管(Insulated Gate Bipolar Translator);绝缘栅双极型晶体管(Insulated Gate Bipolar Transistor);其符号中“C”代表collector,集电极;“E”代表emitter,发射极;
gto n. 矩形脉冲断开
GTO/Diodes 可关断晶闸管
Ideal Switches 理想开关
Ron(Ohms)桥中使用的电力电子器件的内电阻
Lon(H)桥中使用的电力电子器件内电感
Forward voltage 整流桥门槛电压
thyristors 晶闸管
singularity[,siŋɡju'læriti] n. 奇异;突出;稀有;[化]奇点
unexpected [,ʌnik'spektid] adj. 意外的,想不到的
arise [ə'raiz] vi. 出现;起立;上升
underlying [,ʌndə'laiiŋ] adj. 在下面的;优先的;根本的;潜在的
v. 放在…的下面;为…的基础;优先于(underlie的ing形式)
incompatible [,inkəm'pætəbl] adj. 矛盾的;不相容的;不能同时成立的n. 互不相容的人或事物reconfigure [,ri:kən'fiɡə, -ɡjuə] vt. 重新配置
accumulator [ə'kju:mjuleitə] n. 蓄电池;累加器;积聚者
split [split] vt. 劈开;分离;使分离;离开vi. 被劈开;断绝关系;离开n. 裂缝;劈开adj. 劈开的callback ['kɔ:lbæk] n. 回叫信号;回收
id [id] n. 遗传素质;本能冲动
encoder [en'kəudə] n. 译码器;编码器
sin [sin] n. 过失;罪恶;罪孽vi. 犯罪;犯过失vt. 犯罪
led [led] v. 通向;领导;指引
encoder [en'kəudə] n. 译码器;编码器。