25 #ifndef UQ_GAUSSIAN_REALIZER_H 
   26 #define UQ_GAUSSIAN_REALIZER_H 
   28 #include <queso/VectorRealizer.h> 
   29 #include <queso/VectorSequence.h> 
   30 #include <queso/Environment.h> 
   47 template <
class V = GslVector, 
class M = GslMatrix>
 
   59                                 const V&                     lawExpVector, 
 
   60                                 const M&                     lowerCholLawCovMatrix); 
 
   69                                 const V&                     lawExpVector, 
 
  124 #endif // UQ_GAUSSIAN_REALIZER_H 
void updateLawExpVector(const V &newLawExpVector)
Updates the mean with the new value newLawExpVector. 
 
const VectorSet< V, M > & unifiedImageSet() const 
Image set where the realizations lie. Access to protected attribute m_unifiedImageSet. 
 
void updateLowerCholLawCovMatrix(const M &newLowerCholLawCovMatrix)
Updates the lower triangular matrix from Cholesky decomposition of the covariance matrix to the new v...
 
V * m_unifiedLawExpVector
 
M * m_lowerCholLawCovMatrix
 
V * m_unifiedLawVarVector
 
void realization(V &nextValues) const 
Draws a realization. 
 
A templated class for handling sets. 
 
const V & unifiedLawExpVector() const 
Access to the vector of mean values and private attribute: m_unifiedLawExpVector. ...
 
A templated (base) class for handling sampling from vector RVs. 
 
GaussianVectorRealizer(const char *prefix, const VectorSet< V, M > &unifiedImageSet, const V &lawExpVector, const M &lowerCholLawCovMatrix)
Constructor. 
 
const V & unifiedLawVarVector() const 
Access to the vector of variance values and private attribute: m_unifiedLawVarVector. 
 
~GaussianVectorRealizer()
Destructor. 
 
A class for handling sampling from Gaussian probability density distributions.