upsampling and plotting a signal in matlab
이전 댓글 표시
I want to upsample by 5 a signal in frequency domain, and then plot(stem) it. I figured how to upsample,
>Fk=(1/5)*upsample(ak_new,5)
now this creates a vector that is 5 times bigger than the original one, and I need to take the inverse fourier series of this signal
>Fn=(Fk*(exp((1i*2*pi/N*n'*n))));
where n is a sample vector (-1000:1000), as you can see I can't make the transformation since n is not the same size as Fn anymore. how can I solve this? thanks
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!