Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. f <- function (x,i=2, b=1, a=2, c=3,d=1, g=2, h=3, z=1, m=2)
  2. {
  3. (x*a*(m-i*(a*(x+2*b)-2*a*b)*z)/m)/(x*c+0.5*(x^2)*d-(x*a*(m-i*(a*(x+2*b)-2*a*b)*z)/m))-(h/
  4. (g-h))
  5. }
  6.  
  7. png();plot(seq(-100,100), f(seq(-100,100)) );dev.off()
  8.  
  9. png();plot(seq(-1,-0.01,by=0.001), f(seq(-1,-0.01,by=0.001)) );dev.off()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement