由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Science版 - Re: 请教一个SAS的问题
相关主题
Re: [转载] sas expert, help please;Re: help: the approximation of n!
Re: who can try this problem?Re: 积分请教
Re: 计算分子运动的速度Re: 修正结果 --问howell
Re: 一个问题Re: 大吓帮忙看一下...
Re: 第一宇宙速度是多少?Re: Ask2:
Re: EM signals travel along outer side of a wireRe: HELP! a algorithm problem!
Re: repost: Integration Help!Re: 猜数问题
Re: 数学作业Re: 问个内积的问题
相关话题的讨论汇总
话题: ran话题: sas话题: seed话题: sigma话题: mu
进入Science版参与讨论
1 (共1页)
w*z
发帖数: 71
1
%let N=100;
%let SEED=37647; *-1 for system time;
%macro ran(mu,sigma);
data temp;
drop i;
do i=1 to &N;
x=&mu+&sigma*normal(&SEED);
output;
end;
run;
%mend ran;
%ran(10,0.1); * %ran(10,sqrt(0.1)) if sigma^2=0.1;
1 (共1页)
进入Science版参与讨论
相关主题
Re: 问个内积的问题Re: 第一宇宙速度是多少?
Re: how to match up Galois subgp and field extension?Re: EM signals travel along outer side of a wire
Re: analytic solution for an ODE...Re: repost: Integration Help!
Re: one questionRe: 数学作业
Re: [转载] sas expert, help please;Re: help: the approximation of n!
Re: who can try this problem?Re: 积分请教
Re: 计算分子运动的速度Re: 修正结果 --问howell
Re: 一个问题Re: 大吓帮忙看一下...
相关话题的讨论汇总
话题: ran话题: sas话题: seed话题: sigma话题: mu