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!