| template<typename TargetDomain, typename SourceDomain, typename Value, typename Validator> | |
| likelihood< TargetDomain, Value, Validator > | boost::probabilities::domain_cast (const likelihood< SourceDomain, Value, Validator > &l) |
| Cast domain of operations. | |
| template<typename TargetDomain, typename SourceDomain, typename Value, typename Validator> | |
| likelihood< TargetDomain, Value, Validator >::value_type | boost::probabilities::value_cast (const likelihood< SourceDomain, Value, Validator > &l) |
| Cast the value of a likelihood. | |
| template<typename TargetDomain, typename SourceDomain, typename Value, typename Validator> | |
| probability< TargetDomain, Value, Validator > | boost::probabilities::domain_cast (const probability< SourceDomain, Value, Validator > &p) |
| Cast domain of operations. | |
| template<typename TargetDomain, typename SourceDomain, typename Value, typename Validator> | |
| probability< TargetDomain, Value, Validator >::value_type | boost::probabilities::value_cast (const probability< SourceDomain, Value, Validator > &p) |
| Cast the value of a probability. | |
|
||||||||||
|
Cast domain of operations.
p but cast into the domain specified by the template argument TargetDomain. Appropriate domain types are linear_domain and log_domain. |
|
||||||||||
|
Cast domain of operations.
l but cast into the domain specified by the template argument TargetDomain. Appropriate domain types are linear_domain and log_domain. |
|
||||||||||
|
Cast the value of a probability.
p, but cast into the domain specified by the template argument TargetDomain. This is useful, for example, to inspect the value of a probability object and ensure that the value is represented within a particular domain. It may also be useful if further calculations must be performed on the value that do not, for example, result in a probability. Appropriate domain types are linear_domain and log_domain. |
|
||||||||||
|
Cast the value of a likelihood.
l, but cast into the domain specified by the template argument TargetDomain. This is useful, for example, to inspect the value of a likelihood object and ensure that the value is represented within a particular domain. It may also be useful if further calculations must be performed on the value that do not, for example, result in a likelihood. Appropriate domain types are linear_domain and log_domain. |
1.4.5