Skip to content

Commit 43304b7

Browse files
committed
add tensorflow.signal.hamming_window
1 parent 3dd5cbf commit 43304b7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from tensorflow import Tensor
2+
from tensorflow._aliases import DTypeLike, TensorCompatible
3+
4+
def hamming_window(
5+
window_length: TensorCompatible, periodic: bool | TensorCompatible = True, dtype: DTypeLike = ..., name: str | None = None
6+
) -> Tensor: ...

0 commit comments

Comments
 (0)