STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Classes | Public Types | Public Member Functions | Private Member Functions | Private Attributes | List of all members
weibull_distribution< _Ty > Class Template Reference

Classes

struct  param_type
 

Public Types

typedef weibull_distribution< _Ty > _Myt
 
typedef _Ty result_type
 

Public Member Functions

 weibull_distribution (_Ty _A0=_Ty(1), _Ty _B0=_Ty(1))
 
 weibull_distribution (param_type _Par0)
 
_Ty a () const
 
_Ty b () const
 
param_type param () const
 
void param (const param_type &_Par0)
 
result_type() min () const
 
result_type() max () const
 
void reset ()
 
template<class _Engine >
result_type operator() (_Engine &_Eng) const
 
template<class _Engine >
result_type operator() (_Engine &_Eng, const param_type &_Par0) const
 
template<class _Elem , class _Traits >
basic_istream< _Elem, _Traits > & _Read (basic_istream< _Elem, _Traits > &_Istr)
 
template<class _Elem , class _Traits >
basic_ostream< _Elem, _Traits > & _Write (basic_ostream< _Elem, _Traits > &_Ostr) const
 

Private Member Functions

template<class _Engine >
result_type _Eval (_Engine &_Eng, const param_type &_Par0) const
 

Private Attributes

param_type _Par
 

Member Typedef Documentation

template<class _Ty = double>
typedef weibull_distribution<_Ty> weibull_distribution< _Ty >::_Myt
template<class _Ty = double>
typedef _Ty weibull_distribution< _Ty >::result_type

Constructor & Destructor Documentation

template<class _Ty = double>
weibull_distribution< _Ty >::weibull_distribution ( _Ty  _A0 = _Ty(1),
_Ty  _B0 = _Ty(1) 
)
inlineexplicit
4354  : _Par(_A0, _B0)
4355  { // construct
4356  }
param_type _Par
Definition: random:4440
template<class _Ty = double>
weibull_distribution< _Ty >::weibull_distribution ( param_type  _Par0)
inlineexplicit
4359  : _Par(_Par0)
4360  { // construct from parameter package
4361  }
param_type _Par
Definition: random:4440

Member Function Documentation

template<class _Ty = double>
template<class _Engine >
result_type weibull_distribution< _Ty >::_Eval ( _Engine &  _Eng,
const param_type _Par0 
) const
inlineprivate
4435  { // generate pseudo-random value
4436  _Ty _Px = (_Ty(1) - _NRAND(_Eng, _Ty));
4437  return (_Par0._Bx * _CSTD pow(-_CSTD log(_Px), _Ty(1) / _Par0._Ax));
4438  }
float log(float _X) __GPU_ONLY
Calculates the base-e logarithm of the argument
Definition: amp_math.h:774
#define _NRAND(eng, resty)
Definition: random:74
#define _CSTD
Definition: yvals.h:559
float pow(float _X, float _Y) __GPU_ONLY
Calculates _X raised to the power of _Y
Definition: amp_math.h:898
template<class _Ty = double>
template<class _Elem , class _Traits >
basic_istream<_Elem, _Traits>& weibull_distribution< _Ty >::_Read ( basic_istream< _Elem, _Traits > &  _Istr)
inline
4413  { // read state from _Istr
4414  _Ty _A0;
4415  _Ty _B0;
4416  _In(_Istr, _A0);
4417  _In(_Istr, _B0);
4418  _Par._Init(_A0, _B0);
4419  return (_Istr);
4420  }
void _Init(_Ty _A0, _Ty _B0)
Definition: random:4338
basic_istream< _Elem, _Traits > & _In(basic_istream< _Elem, _Traits > &_Is, _Ty &_Dx)
Definition: random:151
param_type _Par
Definition: random:4440
template<class _Ty = double>
template<class _Elem , class _Traits >
basic_ostream<_Elem, _Traits>& weibull_distribution< _Ty >::_Write ( basic_ostream< _Elem, _Traits > &  _Ostr) const
inline
4426  { // write state to _Ostr
4427  _Out(_Ostr, _Par._Ax);
4428  _Out(_Ostr, _Par._Bx);
4429  return (_Ostr);
4430  }
basic_ostream< _Elem, _Traits > & _Out(basic_ostream< _Elem, _Traits > &_Os, _Ty _Dx)
Definition: random:169
_Ty _Bx
Definition: random:4349
_Ty _Ax
Definition: random:4348
param_type _Par
Definition: random:4440
template<class _Ty = double>
_Ty weibull_distribution< _Ty >::a ( ) const
inline
4364  { // return a value
4365  return (_Par.a());
4366  }
param_type _Par
Definition: random:4440
_Ty a() const
Definition: random:4328
template<class _Ty = double>
_Ty weibull_distribution< _Ty >::b ( ) const
inline
4369  { // return b value
4370  return (_Par.b());
4371  }
_Ty b() const
Definition: random:4333
param_type _Par
Definition: random:4440
template<class _Ty = double>
result_type() weibull_distribution< _Ty >::max ( ) const
inline
4389  { // get largest possible result
4390  return ((numeric_limits<result_type>::max)());
4391  }
Definition: limits:79
template<class _Ty = double>
result_type() weibull_distribution< _Ty >::min ( ) const
inline
4384  { // get smallest possible result
4385  return (0);
4386  }
template<class _Ty = double>
template<class _Engine >
result_type weibull_distribution< _Ty >::operator() ( _Engine &  _Eng) const
inline
4399  { // return next value
4400  return (_Eval(_Eng, _Par));
4401  }
result_type _Eval(_Engine &_Eng, const param_type &_Par0) const
Definition: random:4434
param_type _Par
Definition: random:4440
template<class _Ty = double>
template<class _Engine >
result_type weibull_distribution< _Ty >::operator() ( _Engine &  _Eng,
const param_type _Par0 
) const
inline
4405  { // return next value, given parameter package
4406  return (_Eval(_Eng, _Par0));
4407  }
result_type _Eval(_Engine &_Eng, const param_type &_Par0) const
Definition: random:4434
template<class _Ty = double>
param_type weibull_distribution< _Ty >::param ( ) const
inline
4374  { // return parameter package
4375  return (_Par);
4376  }
param_type _Par
Definition: random:4440
template<class _Ty = double>
void weibull_distribution< _Ty >::param ( const param_type _Par0)
inline
4379  { // set parameter package
4380  _Par = _Par0;
4381  }
param_type _Par
Definition: random:4440
template<class _Ty = double>
void weibull_distribution< _Ty >::reset ( )
inline
4394  { // clear internal state
4395  }

Member Data Documentation

template<class _Ty = double>
param_type weibull_distribution< _Ty >::_Par
private

The documentation for this class was generated from the following file: