• 大小: 200KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-01
  • 语言: C/C++
  • 标签: c++  

资源简介

这是使用C++语言编写的产生随机对数正态分布变量的程序

资源截图

代码片段和文件信息

/****************************************************
产生N=100个在(050)区间内满足对数正态分布的随机数
/*****************************************************/
#include 
#include 
#include 
#include 
#define N 100 
#define MAX 50
#define MIN 0.1
#define MIU 0.01
#define SIGMA 8
#define PI 3.14159

double AverageRandom(double mindouble max)//产生(minmax)之间均匀分布的随机数
{
        int MINnteger = (int)(min*10000);
        int MAXnteger = (int)(max*10000);
        int randInteger = rand()*rand();
        int diffInteger = MAXnteger - MINnteger;
        int resultInteger = randInteger % diffInteger + MINnteger;
        return resultInteger/10000.0;
}
double LogNormal(double xdouble miudouble sigma) //对数正态分布概率密度函数
{
        return 1.0/(x*sqrt(2*PI)*sigma) *

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     200805  2011-12-27 14:07  对数正态分布\Debug\log-normal.exe

     文件     226172  2011-12-27 14:07  对数正态分布\Debug\log-normal.ilk

     文件       5927  2011-12-27 14:07  对数正态分布\Debug\log-normal.obj

     文件     234176  2011-12-21 14:57  对数正态分布\Debug\log-normal.pch

     文件     484352  2011-12-27 14:07  对数正态分布\Debug\log-normal.pdb

     文件      41984  2011-12-27 14:07  对数正态分布\Debug\vc60.idb

     文件      45056  2011-12-27 14:07  对数正态分布\Debug\vc60.pdb

     文件       1495  2011-12-27 14:07  对数正态分布\log-normal.cpp

     文件       3451  2011-12-21 14:55  对数正态分布\log-normal.dsp

     文件        545  2011-12-21 14:55  对数正态分布\log-normal.dsw

     文件      41984  2011-12-27 14:08  对数正态分布\log-normal.ncb

     文件      53760  2011-12-27 14:08  对数正态分布\log-normal.opt

     文件       1437  2011-12-27 14:07  对数正态分布\log-normal.plg

     文件        218  2007-01-22 19:53  对数正态分布\www.pudn.com.txt

     文件       1565  2011-11-24 14:37  对数正态分布\对数正太分布.txt

     目录          0  2011-12-27 14:07  对数正态分布\Debug

     目录          0  2011-12-27 14:08  对数正态分布

----------- ---------  ---------- -----  ----

              1342927                    17


评论

共有 条评论