Skip to content

Commit 169f785

Browse files
committed
add tensorflow.signal.hamming_window
1 parent 3f6d9b1 commit 169f785

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)