Share via


fisher_f_distribution::fisher_f_distribution

Constructs the distribution.

explicit fisher_f_distribution(RealType m = 1.0, RealType n = 1.0);

explicit fisher_f_distribution(const param_type& parm);

Parameters

  • m
    The m distribution parameter.

  • n
    The n distribution parameter.

  • parm
    The parameter structure used to construct the distribution.

Remarks

**Precondition:**0.0 < m and 0.0 < n

The first constructor constructs an object whose stored m value holds the value m and whose stored n value holds the value n.

The second constructor constructs an object whose stored parameters are initialized from parm. You can obtain and set the current parameters of an existing distribution by calling the param() member function.

Requirements

Header: <random>

Namespace: std

See Also

Reference

<random>

fisher_f_distribution Class