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

履歴 編集

function
<random>

std::binomial_distribution::p(C++11)

double p() const;

概要

確率pを取得する。

戻り値

構築時に設定された、一度の事象が成功する確率pを返す。

#include <iostream>
#include <random>

int main()
{
  std::binomial_distribution<> dist(3, 0.5);

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

出力

0.5

バージョン

言語

  • C++11

処理系

参照