Add decompose and upsample util functions
Compare changes
+ 15
− 11
@@ -17,12 +17,13 @@ def interleave(*args) -> List[Num]:
@@ -46,8 +47,9 @@ def downsample(a: Sequence[Num], factor: int, phase: int = 0) -> List[Num]:
@@ -73,8 +75,9 @@ def upsample(a: Sequence[Num], factor: int, phase: int = 0) -> List[Num]:
@@ -106,8 +109,9 @@ def decompose(a: Sequence[Num], factor: int) -> List[List[Num]]: