Why does the LPC function return complex values in the Signal Processing Toolbox 5.x (R12.x)?
Show older comments
For example, running the following code results in a real answer a in MATLAB 5.3 (R11.1) but in a complex answer in MATLAB 6.x (R12.x).
randn('state',0);
noise = randn(50000,1); % Normalized white Gaussian noise
x = filter(1,[1 1/2 1/3 1/4],noise);
x = x(45904:50000);
a = lpc(x,3);
Accepted Answer
More Answers (0)
Categories
Find more on Linear Predictive Coding in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!