123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #ifndef _NICE_OBJREC_LHCUMULATIVEGAUSSINCLUDE
- #define _NICE_OBJREC_LHCUMULATIVEGAUSSINCLUDE
- #include "LikelihoodFunction.h"
- namespace OBJREC {
-
- class LHCumulativeGauss : public LikelihoodFunction
- {
- protected:
- double lengthScale;
- double bias;
- public:
-
- LHCumulativeGauss( double lengthScale = 1.0, double bias = 0.0 );
-
-
- double thirdgrad ( double y, double f ) const;
- double hessian ( double y, double f ) const;
- double gradient ( double y, double f ) const;
- double logLike ( double y, double f ) const;
- double likelihood ( double y, double f ) const;
- double predictAnalytically ( double fmean, double fvariance ) const;
-
- static double stdNormPDF (double x);
- };
- }
- #endif
|