《远和近》
——顾城
你,
一会儿看我,
一会儿看云;
我觉得,
你看我时很远,
你看云时很近。
from numpy import ones,vstack
from numpy.linalg import lstsq
points = [(1,5),(3,4)]
x_coords, y_coords = zip(*points)
A = vstack([x_coords,ones(len(x_coords))]).T
m, c = lstsq(A, y_coords)[0]
print("线性方程为 y = {m}x + {c}".format(m=m,c=c))
网友评论