Skip to content

Latest commit

 

History

History
63 lines (45 loc) · 1.29 KB

File metadata and controls

63 lines (45 loc) · 1.29 KB

operator<<

  • random[meta header]
  • std[meta namespace]
  • function template[meta id-type]
  • cpp11[meta cpp]
namespace std {
  template <class CharT, class Traits, class RealType>
  std::basic_ostream<CharT, Traits>& operator<<(
    std::basic_ostream<CharT, Traits>& os
    const fisher_f_distribution<RealType>& x);
}

概要

ストリームへの出力を行う。

効果

osに対して、分布オブジェクトxの現在状態を出力する。

事後条件

osのフォーマットフラグが、この関数を呼び出す前の状態に戻ること。

戻り値

os

#include <iostream>
#include <random>

int main()
{
  std::fisher_f_distribution<> dist(3.0, 4.0);
  std::cout << dist << std::endl;
}

出力例

3.00000000000000000e+00 4.00000000000000000e+00 1.50000000000000000e+00 1.00000000000000000e+00 0.00000000000000000e+00 1.00000000000000000e+00 0 2.00000000000000000e+00 1.00000000000000000e+00 0.00000000000000000e+00 1.00000000000000000e+00 0

バージョン

言語

  • C++11

処理系

参照