queso-0.56.1
GaussianJointPdf.h
Go to the documentation of this file.
1 //-----------------------------------------------------------------------bl-
2 //--------------------------------------------------------------------------
3 //
4 // QUESO - a library to support the Quantification of Uncertainty
5 // for Estimation, Simulation and Optimization
6 //
7 // Copyright (C) 2008-2015 The PECOS Development Team
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the Version 2.1 GNU Lesser General
11 // Public License as published by the Free Software Foundation.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // Lesser General Public License for more details.
17 //
18 // You should have received a copy of the GNU Lesser General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc. 51 Franklin Street, Fifth Floor,
21 // Boston, MA 02110-1301 USA
22 //
23 //-----------------------------------------------------------------------el-
24 
25 #ifndef UQ_GAUSSIAN_JOINT_PROB_DENSITY_H
26 #define UQ_GAUSSIAN_JOINT_PROB_DENSITY_H
27 
28 #include <cmath>
29 
30 #include <queso/JointPdf.h>
31 #include <queso/Environment.h>
32 #include <queso/ScalarFunction.h>
33 #include <queso/BoxSubset.h>
34 
35 namespace QUESO {
36 
37 class GslVector;
38 class GslMatrix;
39 
40 //*****************************************************
41 // Gaussian probability density class [PDF-03]
42 //*****************************************************
49 template <class V = GslVector, class M = GslMatrix>
50 class GaussianJointPdf : public BaseJointPdf<V,M> {
51 public:
53 
54 
58  GaussianJointPdf(const char* prefix,
60  const V& lawExpVector,
61  const V& lawVarVector);
63 
65  GaussianJointPdf(const char* prefix,
66  const VectorSet<V,M>& domainSet,
67  const V& lawExpVector,
68  const M& lawCovMatrix);
72 
74 
75 
77 
78  double actualValue (const V& domainVector, const V* domainDirection, V* gradVector, M* hessianMatrix, V* hessianEffect) const;
79 
81 
85  double lnValue (const V& domainVector, const V* domainDirection, V* gradVector, M* hessianMatrix, V* hessianEffect) const;
86 
88  virtual void distributionMean (V & meanVector) const;
89 
91  virtual void distributionVariance (M & covMatrix) const;
92 
94 
95  double computeLogOfNormalizationFactor(unsigned int numSamples, bool updateFactorInternally) const;
96 
98 
99  void updateLawExpVector(const V& newLawExpVector);
100 
102 
103  void updateLawCovMatrix(const M& newLawCovMatrix);
104 
106  const M& lawCovMatrix () const;
107 
109  const V& lawExpVector() const;
110 
112  const V& lawVarVector() const;
114 
116  virtual void print(std::ostream & os) const;
117 
118 protected:
127  const M* m_lawCovMatrix;
128 };
129 
130 } // End namespace QUESO
131 
132 #endif // UQ_GAUSSIAN_JOINT_PROB_DENSITY_H
void updateLawExpVector(const V &newLawExpVector)
Updates the mean with the new value newLawExpVector.
A templated (base) class for handling scalar functions.
virtual void distributionMean(V &meanVector) const
Mean value of the underlying random variable.
double lnValue(const V &domainVector, const V *domainDirection, V *gradVector, M *hessianMatrix, V *hessianEffect) const
Logarithm of the value of the Gaussian PDF (scalar function).
const V & lawExpVector() const
Access to the vector of mean values and private attribute: m_lawExpVector.
A templated (base) class for handling joint PDFs.
Definition: JointPdf.h:55
double computeLogOfNormalizationFactor(unsigned int numSamples, bool updateFactorInternally) const
Computes the logarithm of the normalization factor.
virtual void print(std::ostream &os) const
Print method for informational and logging purposes.
A templated class for handling sets.
Definition: VectorSet.h:52
virtual void distributionVariance(M &covMatrix) const
Covariance matrix of the underlying random variable.
A class for handling Gaussian joint PDFs.
~GaussianJointPdf()
Destructor.
GaussianJointPdf(const char *prefix, const VectorSet< V, M > &domainSet, const V &lawExpVector, const V &lawVarVector)
Constructor.
const V & lawVarVector() const
Access to the vector of variance values and private attribute: m_lawVarVector.
const VectorSet< V, M > & domainSet() const
Access to the protected attribute m_domainSet: domain set of the scalar function. ...
double actualValue(const V &domainVector, const V *domainDirection, V *gradVector, M *hessianMatrix, V *hessianEffect) const
Actual value of the Gaussian PDF:
void updateLawCovMatrix(const M &newLawCovMatrix)
Updates the lower triangular matrix from Cholesky decomposition of the covariance matrix to the new v...
const M & lawCovMatrix() const
Returns the covariance matrix; access to protected attribute m_lawCovMatrix.

Generated on Thu Dec 15 2016 13:23:10 for queso-0.56.1 by  doxygen 1.8.5