smooth¶
Smooth a signal along a dimension.
Example¶
smoothed = da.ephys.smooth(dim="time", method="gaussian", sigma=0.05)
Notes¶
Requires a uniformly spaced coordinate along
dim.sigmaandwindoware in time units.Methods:
gaussian(default) orboxcar.NumPy inputs are supported; provide
dimsandcoordsfor the smoothed dimension.