View Single Post
  #15   Report Post  
Old June 15th 04, 04:33 AM
Ashhar Farhan
 
Posts: n/a
Default

Alan Peake wrote:

Having said this, I wish I knew how to write the required DSP
software! However I'm sure there are some reading this list
with the required skill (talent?). (My software experience
lies in other areas, such as embedded controllers, NOT
math with imaginary numbers!).


alan,

you don't really have to know a lot of DSP to play around with this
particular beast. very simply, you collect the audio samples in a
first-in first-out buffer of about 250 slots. Each time a new sample
is added at one end, a sample is retired at the other end.

each of the 90 degree phase shift-ed samples is generated by simpy
multiplying all the samples in the pipe with a individual 'magic'
constants and adding them all up together. pretty basic stuff as far
as programming goes. the magic constants are themselves quite complex
to calculated, but that work has alread been done for you. The CD
accompanying EMRFD has those constants in a text file under the DSP
folder.

it is really simple. all the controls are soft and you can play with a
bunch of things.

if you were considering the analog route, i think polyphase approach
is simply the best : it is simple and without any tune-up and the
results are on par with the best DSP can offer.

- farhan