12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #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
|