00001 //#if defined(__GNUC__) && defined(GCC_PCH) 00002 // #include "aux.hpp" 00003 //#else 00004 #include "DiracPdf.hpp" 00005 //#endif 00006 00007 #include <limits> 00008 00009 using namespace indii::ml::aux; 00010 00011 DiracPdf::DiracPdf() { 00012 // 00013 } 00014 00015 DiracPdf::DiracPdf(const vector& x) : Pdf(x.size()), vector(x) { 00016 // 00017 } 00018 00019 DiracPdf::DiracPdf(unsigned int N) : Pdf(N), vector(N) { 00020 // 00021 } 00022 00023 DiracPdf::~DiracPdf() { 00024 // 00025 } 00026 00027 void DiracPdf::setDimensions(const unsigned int N, const bool preserve) { 00028 this->N = N; 00029 resize(N, preserve); 00030 } 00031 00032 const symmetric_matrix& DiracPdf::getCovariance() const { 00033 /** 00034 * @note Not implemented. 00035 */ 00036 } 00037 00038 const symmetric_matrix& DiracPdf::getCovariance() { 00039 /** 00040 * @note Not implemented. 00041 */ 00042 } 00043
1.5.3