Share via


fisher_f_distribution::fisher_f_distribution

Constructs the distribution.

fisher_f_distribution(RealType m0 = 1,
    RealType n0 = 1);
explicit fisher_f_distribution(const param_type& par0);

Parameters

  • m0
    The m distribution parameter.

  • n0
    The n distribution parameter.

  • par0
    The parameter package used to construct the distribution.

Remarks

Precondition: 0.0 < m0 && 0.0 < n0

The first constructor constructs an object whose stored value stored_m holds the value m0 and whose stored value stored_n holds the value n0.

The second constructor constructs an object whose stored parameters are initialized from par0.

Requirements

Header: <random>

Namespace: std

See Also

Reference

<random>

fisher_f_distribution Class