How can I make IFFT function return me a function instead an array
이전 댓글 표시
y = 1./fft(x);
h = ifft(y);
I was trying to do an inverse fft. Matlab returns me an array. How can I get a function instead of array when using ifft?
댓글 수: 1
David Goodmanson
2017년 1월 17일
Hello Siwei, could you provide information on what x and y look like?
답변 (1개)
Walter Roberson
2017년 1월 17일
You cannot do that with fft and ifft. However you can use the continuous transforms. https://www.mathworks.com/help/symbolic/fourier.html
syms x
y = fourier(x);
h = ifourier(y);
카테고리
도움말 센터 및 File Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!