mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-19 05:40:38 +01:00
16 lines
263 B
C++
16 lines
263 B
C++
#ifndef REGRESSION_LINEAR_MODEL_HELPER
|
|
#define REGRESSION_LINEAR_MODEL_HELPER
|
|
|
|
namespace Regression {
|
|
|
|
namespace LinearModelHelper {
|
|
|
|
double Slope(double covariance, double variance);
|
|
double YIntercept(double meanOfY, double meanOfX, double slope);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|