Guest User

Untitled

a guest
Oct 1st, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. f(i) = 1 / ((2 * i - 2) * (2 * i - 3) * a * a);
  2.  
  3. float x, rez_one, rez_two, buf;
  4. pt >> x;
  5. buf = x * ((-x) * (4 * x - 3) - 2);
  6. rez_one = 1 + buf;
  7. rez_two = 1 - buf;
  8. pt << rez_one;
  9. pt << rez_two;
  10.  
  11. y = x*x; // 1
  12. z = 3*y+1; // 2,3
  13. t = (4*y+2)*x; // 4,5,6
  14. y = z - t; // 7
  15. z = z + t; //8
Add Comment
Please, Sign In to add comment