| 137 | } |
| 138 | |
| 139 | double IPLFFT::Hamming(int n, int size) |
| 140 | { |
| 141 | return ( 0.54 - 0.46 * cos( 2.0 * PI * n / (size-1) ) ); |
| 142 | } |
| 143 | |
| 144 | double IPLFFT::Blackman(int n, int size) |
| 145 | { |
nothing calls this directly
no outgoing calls
no test coverage detected