#ifndef MLPP_UNI_LIN_REG_H #define MLPP_UNI_LIN_REG_H // // UniLinReg.hpp // // Created by Marc Melikyan on 9/29/20. // #include namespace MLPP { class UniLinReg { public: UniLinReg(std::vector x, std::vector y); std::vector modelSetTest(std::vector x); double modelTest(double x); private: std::vector inputSet; std::vector outputSet; double b0; double b1; }; } //namespace MLPP #endif /* UniLinReg_hpp */