4 lines
62 B
Matlab
Executable File
4 lines
62 B
Matlab
Executable File
% X = DSPFFT(x,C)
|
|
function X = dspfft(x,C)
|
|
X = fft(x,C)/C;
|