25 #ifndef UQ_VECTOR_RV_H
26 #define UQ_VECTOR_RV_H
28 #include <queso/VectorSpace.h>
29 #include <queso/JointPdf.h>
30 #include <queso/GaussianJointPdf.h>
31 #include <queso/BetaJointPdf.h>
32 #include <queso/GammaJointPdf.h>
33 #include <queso/UniformJointPdf.h>
34 #include <queso/InverseGammaJointPdf.h>
35 #include <queso/WignerJointPdf.h>
36 #include <queso/LogNormalJointPdf.h>
37 #include <queso/ConcatenatedJointPdf.h>
38 #include <queso/VectorRealizer.h>
39 #include <queso/GaussianVectorRealizer.h>
40 #include <queso/UniformVectorRealizer.h>
41 #include <queso/BetaVectorRealizer.h>
42 #include <queso/GammaVectorRealizer.h>
43 #include <queso/InverseGammaVectorRealizer.h>
44 #include <queso/WignerVectorRealizer.h>
45 #include <queso/LogNormalVectorRealizer.h>
46 #include <queso/ConcatenatedVectorRealizer.h>
47 #include <queso/VectorCdf.h>
48 #include <queso/VectorMdf.h>
49 #include <queso/SequenceOfVectors.h>
50 #include <queso/InfoTheory.h>
51 #include <gsl/gsl_sf_psi.h>
68 template<
class V,
class M>
112 virtual void print (std::ostream& os)
const = 0;
121 virtual double estimateENT_ANN()
const;
127 #endif // QUESO_HAS_ANN
143 template <
class P_V,
class P_M,
class Q_V,
class Q_M>
148 unsigned int localNumSamples,
154 #endif // UQ_VECTOR_RV_H
const BaseVectorCdf< V, M > & unifiedCdf() const
Finds the Cumulative Distribution Function of this vector RV, considering the unified sequence of dat...
const BaseJointPdf< V, M > & pdf() const
Posterior Density Function of the vector RV; access to private attribute m_pdf.
const BaseVectorCdf< V, M > * m_unifiedCdf
A templated base class for handling vector RV.
const BaseEnvironment & m_env
const BaseVectorMdf< V, M > & mdf() const
Finds the Mass Density Function of this vector RV; access to private attribute m_mdf.
virtual ~BaseVectorRV()
Virtual destructor.
This (virtual) class sets up the environment underlying the use of the QUESO library by an executable...
const VectorSet< V, M > & m_imageSet
virtual void print(std::ostream &os) const =0
TODO: Prints the vector RV.
const BaseVectorCdf< V, M > * m_subCdf
BaseVectorRealizer< V, M > * m_realizer
A templated (base) class for handling CDFs of vector functions.
const BaseEnvironment & env() const
QUESO environment; access to private attribute m_env.
BaseVectorRV(const char *prefix, const VectorSet< V, M > &imageSet)
Constructor.
A templated (base) class for handling sampling from vector RVs.
A templated class for handling sets.
const BaseVectorMdf< V, M > * m_mdf
const VectorSet< V, M > & imageSet() const
Image set of the vector RV; access to private attribute m_imageSet.
friend std::ostream & operator<<(std::ostream &os, const BaseVectorRV< V, M > &obj)
BaseJointPdf< V, M > * m_pdf
A templated (base) class for handling MDFs of vector functions.
const BaseVectorCdf< V, M > & subCdf() const
Finds the Cumulative Distribution Function of this vector RV, considering only the sub-sequence of da...
void ComputeCovCorrMatricesBetweenVectorRvs(const BaseVectorRV< P_V, P_M > ¶mRv, const BaseVectorRV< Q_V, Q_M > &qoiRv, unsigned int localNumSamples, P_M &pqCovMatrix, P_M &pqCorrMatrix)
const BaseVectorRealizer< V, M > & realizer() const
Finds a realization (sample) of the PDF of this vector RV; access to private attribute m_realizer...
A templated (base) class for handling joint PDFs.