| commit | c2a590b686f68fb66e39800195bf7c3fe92c995c | [log] [tgz] |
|---|---|---|
| author | Philipp Le <philipp@philipple.de> | Tue Apr 26 21:31:47 2022 +0200 |
| committer | Philipp Le <philipp@philipple.de> | Mon May 23 22:10:11 2022 +0200 |
| tree | 63ec5ae4885838dd95fbb39c531f79cd66051284 | |
| parent | 692c01eb47a4eb219f7f25d0e8a7658e6e5c6b99 [diff] [blame] |
feat: Ch03 Ergodic Processes Change-Id: Ic73be4a8ed8afd2e7d181536fd9d420c75f0781f
diff --git a/dcs/frames/__init__.py b/dcs/frames/__init__.py index f6aa703..3e1318c 100644 --- a/dcs/frames/__init__.py +++ b/dcs/frames/__init__.py
@@ -9,12 +9,14 @@ from .ch02_phasor import Ch02PhasorWindow from .ch02_fourier import Ch02FourierWindow +from .ch03_ergodic import Ch03ErgodicWindow def get_windows() -> List[Type[base.Window]]: return [ Ch02PhasorWindow, Ch02FourierWindow, + Ch03ErgodicWindow, ]