最小二乘法求線性迴歸方程

#include<iostream> using namespace std; class Point { public: Point(float x=0,float y=0 ):x(x),y(y){} float getX() const { return x; } float getY() const{ return y; } private: float x, y; };
相關文章
相關標籤/搜索