move DSP stuff to sigproc

This commit is contained in:
Roman Zeyde
2014-07-05 08:23:46 +03:00
parent 20d31b68fb
commit 140011406b
3 changed files with 23 additions and 23 deletions

View File

@@ -48,10 +48,6 @@ def dumps(sym, n=1):
data = sym.tostring()
return data * n
def norm(x):
return np.sqrt(np.dot(x.conj(), x).real)
def iterate(data, bufsize, offset=0, advance=1, func=None):
assert bufsize > 0
assert offset >= 0