楼主: damker
7810 1

如何计算两个正态分布重叠面积 [推广有奖]

  • 0关注
  • 0粉丝

初中生

0%

还不是VIP/贵宾

-

威望
0
论坛币
95 个
通用积分
0
学术水平
0 点
热心指数
0 点
信用等级
0 点
经验
101 点
帖子
10
精华
0
在线时间
2 小时
注册时间
2006-8-8
最后登录
2017-6-6

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
想知道如何计算两个正态分布的重叠面积,有现成的公式或者现成的计算程序吗?最好是较常用的编程语言。
//bow
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:正态分布 编程语言 计算程序 bow 面积 正态分布

回帖推荐

bobguy 发表于2楼  查看完整内容

Here is the example to calculate 两个正态分布的重叠面积 in SAS/IML with call quad routine. See detail explaination in PGM. ****numerical integration***; proc iml; /* Define the integrand */ start fun(t) global (cnt); cnt=cnt+1; /*PDF('NORMAL',t , 1, 1)=normal (1,1) PDF('NORMAL',t , 0, 1 ) ) = normal (0,1)*/ /* Overlap parts = integal of (-m to +m) v dx */ v = min ...

本帖被以下文库推荐

沙发
bobguy 发表于 2010-3-10 01:39:29 |只看作者 |坛友微信交流群
damker 发表于 2010-3-8 15:40
想知道如何计算两个正态分布的重叠面积,有现成的公式或者现成的计算程序吗?最好是较常用的编程语言。
//bow
Here is the example to calculate 两个正态分布的重叠面积 in SAS/IML with call quad routine. See detail explaination in PGM.





****numerical integration***;
proc iml;
/* Define the integrand */
start fun(t) global (cnt);
cnt=cnt+1;
/*PDF('NORMAL',t , 1, 1)=normal (1,1)
PDF('NORMAL',t , 0, 1 ) ) = normal (0,1)*/

/* Overlap parts = integal of (-m to +m) v dx */

v = min( PDF('NORMAL',t , 1, 1), PDF('NORMAL',t , 0, 1 ) );

return(v);

finish;

/* Call QUAD */
a = { .M .P};
cnt=0;
call quad(z,"fun",a);
print z[format=best.] cnt;

quit;
已有 1 人评分经验 论坛币 收起 理由
胖胖小龟宝 + 10 + 10 热心帮助其他会员

总评分: 经验 + 10  论坛币 + 10   查看全部评分

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注jltj
拉您入交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-4-25 20:06