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
David Goodmanson 2017 年 1 月 17 日
Hello Siwei, could you provide information on what x and y look like?

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 1 月 17 日

0 投票

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 ExchangeFourier Analysis and Filtering についてさらに検索

タグ

質問済み:

2017 年 1 月 16 日

回答済み:

2017 年 1 月 17 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by