(self, t, f0)
| 126 | return self.cos_window_fd(a, f, f0) |
| 127 | |
| 128 | def nuttall(self, t, f0): |
| 129 | a = [0.355768, 0.4873960, 0.144232, 0.012604] |
| 130 | return self.cos_window_td(a, t, f0) |
| 131 | |
| 132 | def nuttall_dtft(self, f, f0): |
| 133 | a = [0.355768, 0.4873960, 0.144232, 0.012604] |
no test coverage detected