25 #ifndef UQ_BETA_JOINT_PROB_DENSITY_H 
   26 #define UQ_BETA_JOINT_PROB_DENSITY_H 
   30 #include <queso/JointPdf.h> 
   31 #include <queso/Environment.h> 
   32 #include <queso/ScalarFunction.h> 
   33 #include <queso/BoxSubset.h> 
   46 template <
class V = GslVector, 
class M = GslMatrix>
 
   66   double actualValue(
const V& domainVector, 
const V* domainDirection, V* gradVector, M* hessianMatrix, V* hessianEffect) 
const;
 
   73   double lnValue    (
const V& domainVector, 
const V* domainDirection, V* gradVector, M* hessianMatrix, V* hessianEffect) 
const;
 
   98 #endif // UQ_BETA_JOINT_PROB_DENSITY_H 
A templated (base) class for handling scalar functions. 
 
double actualValue(const V &domainVector, const V *domainDirection, V *gradVector, M *hessianMatrix, V *hessianEffect) const 
Actual value of the Beta PDF. 
 
virtual void distributionMean(V &meanVector) const 
Mean value of the underlying random variable. 
 
BetaJointPdf(const char *prefix, const VectorSet< V, M > &domainSet, const V &alpha, const V &beta)
Constructor. 
 
A templated (base) class for handling joint PDFs. 
 
double lnValue(const V &domainVector, const V *domainDirection, V *gradVector, M *hessianMatrix, V *hessianEffect) const 
Logarithm of the value of the Beta PDF. 
 
double computeLogOfNormalizationFactor(unsigned int numSamples, bool updateFactorInternally) const 
Computes the logarithm of the normalization factor. 
 
A templated class for handling sets. 
 
~BetaJointPdf()
Destructor. 
 
A class for handling Beta joint PDFs. 
 
virtual void distributionVariance(M &covMatrix) const 
Covariance matrix of the underlying random variable. 
 
const VectorSet< V, M > & domainSet() const 
Access to the protected attribute m_domainSet: domain set of the scalar function. ...