Page 1 of 1
WaveSmoother class
Posted: Tue May 03, 2022 2:47 pm
by boonier
Hi, I can't seem to get any specific info on what this does, is it some kind of interpolation? or a lookup table?
thanks
Re: WaveSmoother class
Posted: Tue May 03, 2022 4:00 pm
by UrbanCyborg
If I'm recalling correctly, it's a buffer-averaging filter.
Re: WaveSmoother class
Posted: Wed May 04, 2022 12:53 pm
by boonier
So it's a way to remove noise from a signal?
Re: WaveSmoother class
Posted: Wed May 04, 2022 4:55 pm
by UrbanCyborg
Partly, I suppose, but I think its main purpose is to take the kinks out of CV signals, rather than function as an audio-rate filter. I doubt it would be a very good LP audio filter. But if you need one of those, there are functions to do that in the SDK, as well. To really take noise out of an audio signal would require some sort of upsampling/downsampling along with the filter, so the signal's noise would be shifted to a part of the frequency spectrum you don't care about before being filtered out. That's the basis of what is often called oversampling; it's really a form of resampling.
Re: WaveSmoother class
Posted: Tue May 10, 2022 8:17 am
by boonier
Lovely, thanks for clarifying that
