deltaluca

Untitled

Apr 26th, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. [ 1 1 1 ][y0] [ y0 + y1 + y2 ]
  2. [ 1 w w*][y1] = [ y0 + wy1 + (wy2)* ]
  3. [ 1 w* w][y2] [ y0 + (wy1)* + wy2 ]
  4.  
  5. Best can do with 'just' complex ops (no using real/imag parts seperately) is 2 complex *'s and 6 complex +'s
  6.  
  7. But with using real/imag parts seperaretly, and working with them seperately, can do it in 4 *'s and 14 +'s
  8.  
  9. 2 complex * and 6 complex + works out as: 16 +'s and 8 *'s
Advertisement
Add Comment
Please, Sign In to add comment