python最小二乘的實現

1.使用 linalg最小二乘法的權重參數(m,c)。 import matplotlib.pyplot as plt x=Aarray([[ 0., 1.], [ 1., 1.], [ 2., 1.], [ 3., 1.]]) y = np.array([-1, 0.2, 0.9, 2.1]) m, c = np.linalg.lstsq(x, y)
相關文章
相關標籤/搜索