正态分布随机数算法

// RandZT.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

#include <IOSTREAM>
#include <STDIO.H>
#include <STDLIB.H>
#include <CTIME>

using namespace std;

// [0,1]均匀分布的随机数

double Rand01(double *r)
{
	double base, u, v, p, temp1, temp2,temp3;
	
	base = 256.0;
	u = 17.0;
	v = 139.0;
	temp1 = u * (*r) + v;
	temp2 = (int)(temp1 / base);
	temp3 = temp1 - temp2 * base;
	*r = temp3;
	p = *r / base;
	
	return p;
}

double RandZT(double u, double t, double *r)
{
	int i;
	double total = 0;
	double result;

	for (i= 0; i < 12; i++)
	{
		total += Rand01(r);
	}
	result = u + t *(total - 0.6);
	return result;
}


int main(int argc, char* argv[])
{
	int i;
	double r,u,t;
	r= 5.0;
	u = 2.0;
	t =3.5;

	cout<<"10 正态分布随机数: "<<endl;
	for (i = 0; i < 10; i++)
	{
		printf("%10.5lf%\n", RandZT(u,t,&r));
	}
	printf("\n");
	return 0;
}


/*
10 正态分布随机数:
19.45078
20.10703
24.26328
24.91953
15.07578
19.23203
23.38828
17.04453
21.20078
25.35703

  Press any key to continue
*/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值