Howdy guys (are there girls on this list?),
I'm looking to try to implement some guitar dsp in pd, mainly a preamp, tonestack, and speaker cabinet. I want to see if it's possible to get a better frequency response with my guitar without taking too much cpu or buying extra gear.
Anyway, I've found some great examples in the
CAPS LADSPA plugins and I'm looking at the C++ for the
tonestack. I haven't used any of the filter primitives in PD before, so I don't know where to start. I haven't really done any lower level dsp aside from an intro to signal processing in undergrad (a while ago now).
Can anyone give me a pointer on how to implement this function using rpole~, rzero~, etc:? y = 2 * (a * (x - x[-2]) + c * y[-1] - b * y[-2]) It's the transposed Direct Form II digital filter from dsp/TDFII.h
... yes, I know I *could* run the plugin through [plugin~] but I prefer to keep things minimal. ANyway, this is an experiment.