24 #ifndef __NORMAL__TYPES_H__
25 #define __NORMAL__TYPES_H__
27 #include "algorithms/distributions/distribution_types.h"
33 namespace distributions
66 template<
typename algorithmFPType>
67 class DAAL_EXPORT Parameter:
public distributions::ParameterBase
75 Parameter(algorithmFPType _a = 0.0, algorithmFPType _sigma = 1.0): a(_a), sigma(_sigma) {}
78 algorithmFPType sigma;
83 services::Status check() const DAAL_C11_OVERRIDE;
87 using interface1::Parameter;
daal::algorithms::distributions::normal::interface1::Parameter::sigma
algorithmFPType sigma
Definition: normal_types.h:78
daal::algorithms::distributions::normal::interface1::Parameter::Parameter
Parameter(algorithmFPType _a=0.0, algorithmFPType _sigma=1.0)
Definition: normal_types.h:75
daal::algorithms::distributions::normal::icdf
Definition: normal_types.h:52
daal::algorithms::distributions::normal::interface1::Parameter::a
algorithmFPType a
Definition: normal_types.h:77
daal::algorithms::distributions::normal::Method
Method
Definition: normal_types.h:50
daal::algorithms::distributions::normal::defaultDense
Definition: normal_types.h:53
daal::algorithms::distributions::normal::interface1::Parameter
Normal distribution parameters.
Definition: normal_types.h:67