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: Matlab A-weighting filter (Read 4305 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Matlab A-weighting filter

I'm looking for a A-weighting filter implemented in matlab. I found one on www.replaygain.org but it doesn't work. And I can't seem to find it on google, so does anyone have a A-weighting filter implemented in matlab?

Matlab A-weighting filter

Reply #1
There's no need to implement it. It's already built-in.
>> help filter

You've to feed it with the impulseresponse (for FIR filters) or the A/B coefficient sets and it works.

Instead of applying the filter in the time domain, you could also do a windowed FFT and accumulate the weighted squares of the FFT bins to get a picture of "how loud" it is perceived.

Dunno which method is faster. I guess there's no big performance difference.


bye,
Sebastian