|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object ddf.minim.ugens.UGen ddf.minim.effects.IIRFilter ddf.minim.effects.LowPassSP
public class LowPassSP
LowPassSP is a single pole low pass filter. It is not super great, but it gets the job done.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class ddf.minim.ugens.UGen |
---|
UGen.InputType, UGen.UGenInput |
Field Summary |
---|
Fields inherited from class ddf.minim.effects.IIRFilter |
---|
a, audio, b, cutoff |
Constructor Summary | |
---|---|
LowPassSP(float freq,
float sampleRate)
Constructs a low pass filter with a cutoff frequency of freq
that will be used to filter audio recorded at sampleRate . |
Method Summary | |
---|---|
protected void |
calcCoeff()
Calculates the coefficients of the filter using the current cutoff frequency. |
Methods inherited from class ddf.minim.effects.IIRFilter |
---|
frequency, initArrays, printCoeff, process, process, setFreq, uGenerate, validFreq |
Methods inherited from class ddf.minim.ugens.UGen |
---|
addInput, getLastValues, patch, patch, patch, printInputs, removeInput, sampleRate, sampleRateChanged, setSampleRate, tick, unpatch, unpatch |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public LowPassSP(float freq, float sampleRate)
freq
that will be used to filter audio recorded at sampleRate
.
freq
- the cutoff frequencysampleRate
- the sample rate of the audio that will be filteredMethod Detail |
---|
protected void calcCoeff()
IIRFilter
b[0]
corresponds to the coefficient b1
.
calcCoeff
in class IIRFilter
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |