?? realifft.m
字號:
function rs = realifft(data, N)% inverse fft for fourier coefficents from real valued original data% needs the length of the original time series from which the fft was computed% see also : realfftdata = data(:);if mod(N,2) % odd length data = [data ; conj(data(end:-1:2))]; else % even length data = [data ; conj(data(end-1:-1:2))]; end rs = real(ifft(data)); % remove small imaginary components introduced by rounding errors
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -