25 #ifndef UQ_GENERIC_VECTOR_RV_H 
   26 #define UQ_GENERIC_VECTOR_RV_H 
   28 #include <queso/VectorRV.h> 
   29 #include <queso/VectorSpace.h> 
   30 #include <queso/JointPdf.h> 
   31 #include <queso/VectorRealizer.h> 
   32 #include <queso/VectorCdf.h> 
   33 #include <queso/VectorMdf.h> 
   34 #include <queso/SequenceOfVectors.h> 
   35 #include <queso/InfoTheory.h> 
   52 template <
class V = GslVector, 
class M = GslMatrix>
 
   97   void print(std::ostream& os) 
const;
 
  113 #endif // UQ_GENERIC_VECTOR_RV_H 
A templated class for handling generic vector RVs. 
 
const BaseVectorRealizer< V, M > & realizer() const 
Finds a realization (sample) of the PDF of this vector RV; access to private attribute m_realizer...
 
void setPdf(BaseJointPdf< V, M > &pdf)
Sets the PDF of this vector RV to pdf. 
 
A templated class for handling sets. 
 
A templated base class for handling vector RV. 
 
A templated (base) class for handling joint PDFs. 
 
void setRealizer(BaseVectorRealizer< V, M > &realizer)
Sets the realizer of this vector RV to realizer. 
 
A templated (base) class for handling CDFs of vector functions. 
 
const BaseVectorCdf< V, M > & unifiedCdf() const 
Finds the Cumulative Distribution Function of this vector RV, considering the unified sequence of dat...
 
const BaseVectorCdf< V, M > & subCdf() const 
Finds the Cumulative Distribution Function of this vector RV, considering only the sub-sequence of da...
 
void setUnifiedCdf(BaseVectorCdf< V, M > &unifiedCdf)
Sets the CDF of the unified sequence of this vector RV to unifiedCdf. 
 
A templated (base) class for handling sampling from vector RVs. 
 
const BaseJointPdf< V, M > & pdf() const 
Posterior Density Function of the vector RV; access to private attribute m_pdf. 
 
void print(std::ostream &os) const 
TODO: Prints the vector RV. 
 
const VectorSet< V, M > & imageSet() const 
Image set of the vector RV; access to private attribute m_imageSet. 
 
A templated (base) class for handling MDFs of vector functions. 
 
void setSubCdf(BaseVectorCdf< V, M > &subCdf)
Sets the CDF of the sub-sequence of this vector RV to subCdf. 
 
void setMdf(BaseVectorMdf< V, M > &mdf)
Sets the MDF of this vector RV to Mdf. 
 
GenericVectorRV(const char *prefix, const VectorSet< V, M > &imageSet)
Default constructor. 
 
virtual ~GenericVectorRV()
Virtual destructor. 
 
const BaseVectorMdf< V, M > & mdf() const 
Finds the Mass Density Function of this vector RV; access to private attribute m_mdf.