MUQ  0.4.3
KarhunenLoeveFactory.cpp
Go to the documentation of this file.
2 
4 
5 using namespace boost::property_tree;
6 using namespace muq::Approximation;
7 
8 
9 
10 KarhunenLoeveFactory::KarhunenLoeveFactory(std::shared_ptr<KernelBase> kernelIn) : kernel(kernelIn)
11 {
12  // Pull out the separable parts of the kernel
13 
14 };
15 
16 
17 void KarhunenLoeveFactory::Compute(Eigen::VectorXd const& p0,
18  Eigen::VectorXd const& p1,
19  Eigen::VectorXi const& ns,
20  boost::property_tree::ptree options)
21 {
22 
23 
24 
25 
26 
27 }
28 
29 
void Compute(Eigen::VectorXd const &p0, Eigen::VectorXd const &p1, Eigen::VectorXi const &ns, boost::property_tree::ptree options=boost::property_tree::ptree())