bandpass {sonicscrewdriver} | R Documentation |
Simple bandpass filter
Description
Creates a band pass WaveFilter between values specified to a Wave object.
Usage
bandpass(from, to, ...)
Arguments
from |
Bottom of bandpass frequency (Hz). |
to |
Top of bandpass frequency (Hz). |
... |
Further arguments to pass to ffilter. |
Details
This is a simple wrapper function to the seewave ffilter function allowing its use with filterw and pipes.
Value
A WaveFilter object.
Examples
## Not run:
nwave <- noise("white", duration=44100, samp.rate=44100)
fwave <- filterWave(nwave, bandpass(from=1000, to=2000))
nwave |> filterWave(bandpass(from=1000, to=2000)) -> fwave
## End(Not run)
[Package sonicscrewdriver version 0.0.7 Index]