<random>

公有成员函数
<random>

std::lognormal_distribution::(构造函数)

(1)
explicit lognormal_distribution ( result_type m = 0.0, result_type s = 1.0 );
(2)
explicit lognormal_distribution ( const param_type& parm );
构造对数正态分布
构造一个 lognormal_distribution 对象,采用由 ms 指定的分布参数,或由对象 parm 指定的分布参数。

参数

m
此分布中可能值的对数变换所形成的底层正态分布的均值。
result_type是一个成员类型,表示每次调用 operator() 时生成的随机数的类型。它被定义为第一个类模板参数(实数类型 (RealType)).
s
此分布中可能值的对数变换所形成的底层正态分布的标准差。
此值应为正值 (s>0)。
result_type是一个成员类型,表示每次调用 operator() 时生成的随机数的类型。它被定义为第一个类模板参数(实数类型 (RealType)).
parm
表示分布参数的对象,通过调用成员函数 param 获得。
param_type是一个成员类型。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// lognormal_distribution example
#include <iostream>
#include <chrono>
#include <random>

int main()
{
  // construct a trivial random generator engine from a time-based seed:
  unsigned seed = std::chrono::system_clock::now().time_since_epoch().count();
  std::default_random_engine generator (seed);

  std::lognormal_distribution<double> distribution (0.0,1.0);

  std::cout << "some lognormal-distributed(0.0,1.0) results:" << std::endl;
  for (int i=0; i<10; ++i)
    std::cout << distribution(generator) << std::endl;

  return 0;
}

可能的输出
some lognormal-distributed(0.0,1.0) results:
1.76931
0.426828
2.13448
3.41825
0.574683
1.7239
1.49771
1.27637
0.371665
1.13434


复杂度

常量。

另见