Impulse Smoothing

Demonstrates low-pass, band-pass, and high-pass filtering on the synthetic Texas grid (~2k nodes).

Basic Filtering on Texas Grid
from sgwt import Convolve, impulse
from sgwt import DELAY_TEXAS as L
from sgwt import COORD_TEXAS as C

X = impulse(L, n=600)
s = 1e-1

with Convolve(L) as conv:
    LP = conv.lowpass(X, s)
    BP = conv.bandpass(X, s)
    HP = conv.highpass(X, s)
Band-pass filtered signal on Texas Grid Example