Visible to Intel only — GUID: GUID-9304C528-CA49-43B4-B32C-761D9218D123
Visible to Intel only — GUID: GUID-9304C528-CA49-43B4-B32C-761D9218D123
chi_square
Generates chi-square distributed random values.
Description
The chi_square class object is used in the generate function to provide random numbers with chi-square distribution and ν degrees of freedom, .
The probability density function is:
The cumulative distribution function is:
API
Syntax
namespace oneapi::mkl::rng {
template<typename RealType = float,
typename Method = chi_square_method::by_default>
class chi_square {
public:
using method_type = Method;
using result_type = RealType;
chi_square(): chi_square(5){}
explicit chi_square(std::int32_t n);
explicit chi_square(const param_type& pt);
std::int32_t n() const;
param_type param() const;
void param(const param_type& pt);
};
}
Devices supported: CPU and GPU.
Include Files
oneapi/mkl/rng.hpp
Template Parameters
typename RealType = float |
Type of the produced values. The specific values are as follows: float double |
typename Method = oneapi::mkl::rng::chi_square_method::by_default |
Generation method. The specific values are as follows: oneapi::mkl::rng::chi_square_method::gamma_based See brief descriptions of the methods in Distributions Template Parameter Method. |
Input Parameters
Name |
Type |
Description |
---|---|---|
n |
std::int32_t |
Degrees of freedom. |