Files
2022-06-30 13:32:40 +02:00

4 lines
62 B
Matlab
Executable File

% X = DSPFFT(x,C)
function X = dspfft(x,C)
X = fft(x,C)/C;