pmlpp/mlpp/gauss_markov_checker/gauss_markov_checker_old.h

34 lines
789 B
C
Raw Normal View History

2023-02-13 16:51:00 +01:00
#ifndef MLPP_GAUSS_MARKOV_CHECKER_OLD_H
#define MLPP_GAUSS_MARKOV_CHECKER_OLD_H
//
// GaussMarkovChecker.hpp
//
// Created by Marc Melikyan on 11/13/20.
//
#include "core/math/math_defs.h"
#include "core/object/reference.h"
#include <string>
#include <vector>
class MLPPGaussMarkovCheckerOld : public Reference {
GDCLASS(MLPPGaussMarkovCheckerOld, Reference);
public:
void checkGMConditions(std::vector<real_t> eps);
// Independent, 3 Gauss-Markov Conditions
bool arithmeticMean(std::vector<real_t> eps); // 1) Arithmetic Mean of 0.
bool homoscedasticity(std::vector<real_t> eps); // 2) Homoscedasticity
bool exogeneity(std::vector<real_t> eps); // 3) Cov of any 2 non-equal eps values = 0.
protected:
static void _bind_methods();
};
#endif /* GaussMarkovChecker_hpp */