Guest User

Untitled

a guest
Dec 10th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. def fitfunc_polynome_OP_BL(x ,a, b, c, d, e, g, h, i):
  2. return a*(x**7) + b*(x**6) + c*(x**5) + d*(x**4) + e*(x**3) + g*(x**2) + h*x +i
  3.  
  4. def fitfunc_polynome_OP_BL(x ,a, b, c, d, e, g, h, i):
  5. return a*(np.power(x,7)) + b*(np.power(x,6))+ c*np.power((x,5)) + d*(np.power(x,4)) + e*(np.power(x,3)) + g*(np.power(x,2)) + h*x +i
Add Comment
Please, Sign In to add comment