4 lines
65 B
Matlab
Executable File
4 lines
65 B
Matlab
Executable File
% x = DSPIFFT(X,C)
|
|
function x = dspifft(X,C)
|
|
x = ifft(X,C)*C;
|