how to extend time after fft ?
조회 수: 5 (최근 30일)
이전 댓글 표시
I have a signal runs for 500 seconds ( 1:1:500 sec) after i did the fft, i want to go back to time domain and see how the signal looks like for 1000 Seconds (1:1:1000) ? Any advice how to extend the time ? Is it better to do it in frequency domain ? Is it simply to add the sines and cosines with loops ?
Thank you
댓글 수: 0
채택된 답변
Vilnis Liepins
2013년 11월 11일
You can try edft.m on fileexchange http://www.mathworks.com/matlabcentral/fileexchange/11020-extended-dft
ifft(edft(YourData,1500),1500)
Signal for 1000 sec will be ifft output 1:1000.
추가 답변 (1개)
Walter Roberson
2013년 11월 8일
Try
ifft(fft(YourData), 1000)
댓글 수: 2
Walter Roberson
2013년 11월 11일
fft() assumes that its data is periodic, so to get 1000 seconds of output, ifft() to get the 500 second output and then replicate it.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!