123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- namespace NICE {
- /**
- * @class LogDetApproxBaiAndGolub
- * @brief LogDet Approximation as stated by Bai and Golub ("Bounds for the Trace of the Inverse and the Determinant of Symmetric Positive Definite Matrices" in Annals of Numerical Mathematics")
- * @author Alexander Freytag
- */
-
- class LogDetApproxBaiAndGolub : public LogDetApprox
- {
- protected:
- bool verbose;
-
- public:
-
-
-
-
-
-
- LogDetApproxBaiAndGolub();
-
-
- ~LogDetApproxBaiAndGolub();
-
-
-
-
- void setVerbose(const bool & _verbose);
-
-
-
-
-
-
- virtual double getLogDetApproximation(const NICE::Matrix & A);
-
-
- double getLogDetApproximation(const NICE::Matrix A, const double & lambdaUpperBound, const double & lambdaLowerBound);
-
-
- double getLogDetApproximation(const double & mu1, const double & mu2, const double & lambdaUpperBound, const double & lambdaLowerBound, const int & n );
-
-
- double getLogDetApproximationUpperBound(const double & mu1, const double & mu2, const double & lambdaUpperBound, const int & n );
-
-
- double getLogDetApproximationLowerBound(const double & mu1, const double & mu2, const double & lambdaLowerBound, const int & n );
- };
- }
|