How to calculate residual LP (linear prediction) signal of an audio signal ?
8 次查看(过去 30 天)
显示 更早的评论
Hi, I have a problem in calculating the residual of linear prediction. I have an audio signal sampled at 8kHz obtained through the audioread function:
[y,Fs] = audioread('file.wav');
I need to process this signal in blocks of 20 ms with a shift of 10 ms and for each of them calculate the LP coefficients using the matlab function lpc and create a time-varying inverse filter using the previously calculated coefficients to obtain the LP residual signal. How can I proceed?
Thanks for the help.
0 个评论
回答(1 个)
Aditya Shah
2022-10-11
Hi!
Refer to the following documentation which shows the implementation of LPC analysis and synthesis (LPC coding) of a speech signal:
In the analysis section, it explains how to extract the reflection coefficients from the signal and use it to compute the residual signal.
Additionally, also refer to the following documentation for more information about the Linear prediction filter:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear Prediction 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!