12 lines
143 B
C
12 lines
143 B
C
|
#ifndef LINEAR_REGRESSION
|
||
|
#define LINEAR_REGRESSION
|
||
|
|
||
|
class LinearRegression {
|
||
|
private:
|
||
|
uint32_t i;
|
||
|
public:
|
||
|
LinearRegression();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|