说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> Matlab源程序
1)  Matlab original procedure
Matlab源程序
2)  matlab program
Matlab程序
1.
Error Analysis of Response spectrum Calculation using Matlab programs;
Matlab程序计算反应谱的误差分析
2.
By means of computer, the vibration data obtained by the tests was analyzed with Matlab program, thus the eigenfrequencies of the eccentric axle were defined, which provided design basis to avoid the resonance of the eccentric axle.
对低矮颚式破碎机在开机、空载、加载和停机工况下的偏心轴振动进行了实验测试,并借助于计算机,用Matlab程序对测试获得的振动数据进行了分析,由此获得了偏心轴的特征频率,为避免破碎机工作时其偏心轴发生共振现象提供了设计依据。
3.
RBF neural network is proposed by using of MATLAB program.
利用MATLAB程序构建径向基函数神经网络 ,运用计算机经过 5 17次训练学习后 ,可实现粉煤灰除炭浮选工艺产品结果预测和工艺参数确定 ,并通过试验验证了神经网络模型的计算结果 。
3)  Matlab
matlab程序
1.
Iterative Method about solving of linear equations is an important practical method,it is especially applicable to solve a large number of emerging sparse coefficient matrix for a large array of linear equations in practice,Matlabprocedures can to improve the capacity of the actual calculation and calculation of speed.
迭代法是解线性方程组的一个重要的实用方法,特别是适用于求解在实际中大量出现的系数矩阵为稀疏阵的大型线性方程组,而Matlab程序能够提高实际计算的能力和计算的速度。
4)  MATLAB program language
MATLAB程序语言
1.
For the case of square end faces of the medium,focused Gaussian beam pumping and the pump spot size is assumed to be less than the end face size,the heat equation of anisotropic laser medium by laser diode(LD) endpumped has been studied by using MATLAB program language.
针对各向异性激光介质的通光面为方形、泵浦光为高斯光束及泵浦尺寸小于通光面的情况,以Nd:YVO4为例,用MATLAB程序语言对激光二极管(LD)端面泵浦的各向异性激光介质的热传导方程进行数值计算,精确地求出了激光介质中各点的温度和温度分布,从而可以定量地分析出LD端面泵浦固体激光器的热效应,进而设计出高效高功率LD端面泵浦的TEM00Nd:YVO4固体激光器。
5)  algorithmic program of MATLAB
MATLAB算法程序
6)  Matlab programming
Matlab程序设计
补充资料:齿轮轮齿渐开线、螺栓、弹簧autolsp源程序
 

一、齿轮轮齿渐开渐开线


(defun c:gear(/)
(
 setq
p0 (getpoint"输入齿轮中心p0: ")
m  (getreal"输入齿轮模数M: ")
z  (getint"输入齿轮齿数Z: ")
ha 1
c 0.25
a (/ pi 9)
ra(/ (* (+ z (+ ha ha)) m) 2)
rf(/ (* (- z (+ (+ ha ha) c)) m) 2)
r(/ ( * m z) 2)
rb ( * r (cos a))
ri rb
ang 0
g (polar p0 ang rb)
)
(command "circle" p0 ra)
(command "circle" p0 rf)
(command "circle" p0 r)
(command "line"  g)
 
(while (< ri ra)
(setq
ang ( + ang(/ pi 360))
ri ( / rb (cos ang))
cta ( - (/ (sin ang) (cos ang)) ang)
g(polar p0 cta ri)
)


(command g)
)
(command )
)



二、螺旋源程序


(defun errMsg (s)
  (if (/= s "function cancelled") (princ (strcat "\nError: " s)))
     ; 当命令执行时出现错误
  (setvar "cmdecho" ocmdold)                                      ; 例如用户按下了CTRL + C
  (setvar "osmode" osmold)
  (setq *error* olderr)   ; 恢复旧的错误处理
  (princ)
)


(defun c:3Dthread (/ radouter threadpitch threadlength threadangle
                   ptStart innerdiafactor radmid radinner ocmdold osmold 4H 5H 6H h6 g6)
   ;-------------------------------------------------------------------
   ; 获取公制外径大小、螺距总长
   ; 然后计算一系列几何点
   ; 并且关闭对象捕捉、命令回显
   ;-------------------------------------------------------------------
   (setq 4H (list 0.0015 0.002 0.002 0.0025 0.003 0.0035 0.004 0.005 0.006 0.007 0.008 0.009 0.010))  
   (setq 5H (list 0.002 0.0025 0.003 0.004 0.0045 0.0055 0.0065 0.0075 0.009 0.010 0.0115 0.0125 0.0135))  
   (setq 6H (list 0.003 0.004 0.0045 0.0055 0.0065 0.008 0.0095 0.011 0.0125 0.0145 0.016 0.018 0.020))  

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