How does MATLAB do fft and ifft in matrices
16 ビュー (過去 30 日間)
古いコメントを表示
Hi, I'm trying to do the ifft and fft of matrices, but I'm getting unexpected values.
I only don't get any error when dealing with a 1x4 matrix (which is a vector).
When putting, for example, a 2x4 matrix, I obtain and 8x4 matrix, which is not what I expected. I expected a 2x4 matrix again.
When coding the fft and ifft of the matrix, I wrote:
received_signal = fft(a,n)
transmitted signal = ifft(a,n)
where a= matrix and n= dft size (i.e. total number of elements in the matrix)
In addition, I'd like the fft/ifft to calculate the ifft and fft in a row-by-row fashion, since I'm dealing with signals so I don't want the bits to get out of order.
Thanks in advance for your help.
0 件のコメント
採用された回答
Star Strider
2017 年 10 月 28 日
The fft function computes the discrete Fourier transform on the columns (dimension 1) of a matrix, unless you tell it to compute along the rows (dimension 2).
When I do something similar, I get a Fourier-transformed matrix that is the same size as the original matrix, however complex (as expected).
If you are getting something else as a result, post your code. I suspect you are simply getting the expected complex result.
2 件のコメント
Star Strider
2017 年 10 月 29 日
My pleasure.
To get fft to compute along the rows, specify ‘2’ (the row dimension) for ‘dim’:
Fy = fft(y, NFFT, dim);
so:
received_signal = fft(a,n,2);
The fft function will compute the fft of all the rows (with the row dimension specified here) in matrix ‘a’. The same applies to the ifft function.
その他の回答 (0 件)
参考
カテゴリ
Help Center および 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!