最終更新日時(UTC):
が更新

履歴 編集

function
<random>

std::exponential_distribution::lambda(C++11)

result_type lambda() const;

概要

指数分布のパラメータλを取得する。

戻り値

構築時に設定された、lambdaの値を返す。

#include <iostream>
#include <random>

int main()
{
  std::exponential_distribution<> dist(1.0);

  double lambda = dist.lambda();
  std::cout << lambda << std::endl;
}

出力

1

バージョン

言語

  • C++11

処理系

参照