Discrete Fourier Transform using MATLAB?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how to write code for 4 point DFT?
0 comentarios
Respuestas (1)
Sufiyan
el 2 de Mzo. de 2023
Hello,
You can refer to the below code.
% Define the input sequence x[n]
x = [1 2 3 4];
% Compute the DFT coefficients X[k]
X = zeros(1, 4);
for k = 1:4
for n = 1:4
X(k) = X(k) + x(n) * exp(-2*pi*1i*(n-1)*(k-1)/4);
end
end
disp(X);
0 comentarios
Ver también
Categorías
Más información sobre Discrete Fourier and Cosine Transforms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!