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

履歴 編集

function
<random>

std::negative_binomial_distribution::k(C++11)

IntType k() const;

概要

目標とする成功回数kを取得する。

戻り値

構築時に設定された、成功回数kを返す。

#include <iostream>
#include <random>

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

  int k = dist.k();
  std::cout << k << std::endl;
}

出力

3

バージョン

言語

  • C++11

処理系

参照