We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aa49af commit 96dfb4eCopy full SHA for 96dfb4e
tests/wt/test_wlab.py
@@ -79,4 +79,15 @@ def test_wavelet_function():
79
wavelet_function(db4(), 0, 0, 16)
80
81
def test_scaling_function():
82
- scaling_function(db4(), 0, 0, 16)
+ scaling_function(db4(), 0, 0, 16)
83
+
84
85
+def test_forward_periodized_orthogonal():
86
+ qmf = haar()
87
+ x = random.normal(keys[0], (4,))
88
+ w = forward_periodized_orthogonal_jit(qmf, x)
89
90
+def test_inverse_periodized_orthogonal():
91
92
+ w = random.normal(keys[0], (4,))
93
+ x = inverse_periodized_orthogonal_jit(qmf, w)
0 commit comments