Why does the LPC function return complex values in the Signal Processing Toolbox 5.x (R12.x)?
Mostrar comentarios más antiguos
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);
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Linear Predictive Coding en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!