说明:双击或选中下面任意单词,将显示该词的音标、读音、翻译等;选中中文或多个词,将显示翻译。
您的位置:首页 -> 词典 -> SAS源程序
1)  SAS source programs
SAS源程序
2)  SAS macro program
SAS宏程序
1.
Designing of SAS macro programs of fourfold table for report forms of statistical results;
四格表指标统计分析报表的SAS宏程序
2.
Designing of SAS macro program for statistic form of measurement data on normal distribution;
正态分布定量指标统计分析报表的SAS宏程序
3.
We design some SAS macro programs to output directly the statistic form of CV by applying SAS statistical software.
通过编写SAS宏程序,可以应用SAS统计软件直接输出以上变异系数的统计报表。
3)  SAS Procedure
SAS程序
1.
SAS procedure for relapses of hepatitis based on a negative binomial model;
负二项回归模型用于肝炎患者复发次数的SAS程序实现
4)  SAS program
SAS程序
1.
The randomized protocol and SAS program of multi-center clinical trials for unequally distributed subtype of disease;
疾病亚型分配不等的多中心临床试验随机化方案及SAS程序
2.
Randomized protocol and SAS program of multi-center clinical trials for many indications
多适应证、多中心临床试验随机化方案及SAS程序
3.
A sampling error was added in the source of variation for repeated measure data from plot sampling;the Proc Anova statement was used in SAS program and the test statement was added after model statement.
结合两个实例,讨论了单因素随机区组试验中重复测量数据的分析方法,并用SAS程序进行了统计计算。
5)  SAS programme
SAS程序
1.
A sample of SAS programme on cassava experiment of 5×5 Latin-square design is also given.
最后,给出了笔者编写的SAS程序,供实际试验工作者仿用。
6)  SAS statistical analysis programme
SAS统计分析程序
补充资料:齿轮轮齿渐开线、螺栓、弹簧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))  

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