Why does the LPC function return complex values in the Signal Processing Toolbox 5.x (R12.x)?
이전 댓글 표시
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);
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Linear Predictive Coding에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!