Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. def f(x):
  2. return ((-41*x**4)/12) + ((79*x**3)/6) - ((49*x**2)/12) - ((44*x)/3) + 5
  3. l = linspace(-10, 10, 100)
  4. h = f(x)
  5. plot(l, h)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement