25 #ifndef UQ_GAUSSIAN_VECTOR_CUMULATIVE_DISTRIBUTION_FUNCTION_H 
   26 #define UQ_GAUSSIAN_VECTOR_CUMULATIVE_DISTRIBUTION_FUNCTION_H 
   28 #include <queso/VectorCdf.h> 
   29 #include <queso/ArrayOfOneDGrids.h> 
   30 #include <queso/ArrayOfOneDTables.h> 
   31 #include <queso/ScalarCdf.h> 
   32 #include <queso/Environment.h> 
   47 template<
class V, 
class M>
 
   59                            const V&                     domainExpectedValues,
 
   60                            const V&                     domainVarianceValues);
 
   67                            const V&                     domainExpectedValues,
 
   77   void values(
const V& paramValues, V& cdfVec) 
const;
 
   84   void print (std::ostream& os) 
const;
 
  100 #endif // UQ_GAUSSIAN_VECTOR_CUMULATIVE_DISTRIBUTION_FUNCTION_H 
A templated class for handling sets. 
 
void values(const V ¶mValues, V &cdfVec) const 
TODO: Returns the values of the vector CDF at each element of paramValues. 
 
void commonConstructor()
A common constructor to be used both class constructors. 
 
const VectorSet< V, M > & pdfSupport() const 
Returns the image set (support) of the PDF; access to protected attribute m_pdfSupport. 
 
TODO: A class for handling Gaussian CDFs. 
 
A templated (base) class for handling CDFs of vector functions. 
 
void print(std::ostream &os) const 
TODO: Prints the vector CDF. 
 
GaussianVectorCdf(const char *prefix, const VectorSet< V, M > &pdfSupport, const V &domainExpectedValues, const V &domainVarianceValues)
TODO: Constructor.