Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. for each sample:
  2. t0 = x * sample;
  3. real = t0 + pole * (real - t0);
  4.  
  5. t0 = -y * sample;
  6. imag = t0 + pole * (imag - t0);
  7.  
  8. t0 = x * c1 - y * c2;
  9. y = x * c2 + y * c1;
  10. x = t0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement