Guest User

Untitled

a guest
Mar 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. y = a + b*x1 + c*x2
  2.  
  3. X=np.array([2,4])
  4. coef=np.arange(1,4)
  5.  
  6. y = coef[0] + np.dot(X, coef[1:])
Add Comment
Please, Sign In to add comment