Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: DSP prerequisites? (Read 5079 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

DSP prerequisites?

I am a Bachelor of Arts and only have some basic maths/science knowledge not better than a 16-year-old student. What kinds of maths/science subjects should I learn before studying subjects like sinc function, FFT and other related stuffs? It is obvious that I don't understand some formulae in a typical DSP textbook, Wikipedia and so on.

For example, what should I learn if I want to design a typical parametric EQ with highpass/lowpass/notch/Q value, or a resampler at least better than linear interpolation?

Thanks!

DSP prerequisites?

Reply #1
The Scientist and Engineer's Guide to Digital Signal Processing is freely available online and provides a good introduction without getting too academic.

When I got started, I found that the excessive use of complex numbers (real + imaginary) made most formal textbooks difficult to understand.  A good understanding of Euler's Formula and the imaginary plane goes a long way.

Julius O. Smith's website is another great reference, but requires more prerequisite knowledge.

DSP prerequisites?

Reply #2
I am a Bachelor of Arts and only have some basic maths/science knowledge not better than a 16-year-old student. What kinds of maths/science subjects should I learn before studying subjects like sinc function, FFT and other related stuffs? It is obvious that I don't understand some formulae in a typical DSP textbook, Wikipedia and so on.


To actually understand proofs and relations, you need highschool level differential and integral calculus.  Linear algebra and differential equations are also useful, but texts exist that comprehensively cover DSP without assuming knowledge of either, so I would not consider them essential.  If you actually need to understand at that level is debatable though.  If you just want to write software you don't necessarily need to understand exactly what you're doing.  When I was learning about codecs, I often wrote or adapted code without fully understanding it until much later.

For example, what should I learn if I want to design a typical parametric EQ with highpass/lowpass/notch/Q value, or a resampler at least better than linear interpolation?


Depends what you mean by design.  If you mean derive from scratch using first principles, then the above.  If you mean just use other people's formulas and code, but adapted for your needs, then you might not need any math at all beyond algebra. 

What is your actual goal here?

 

DSP prerequisites?

Reply #3
My goal is to understand the underlying theories and put them into practice. Thanks for the replies and I will take a look to the subjects mentioned above.