Guidance with DFT Transform
Mostrar comentarios más antiguos
I need help with implement DFT transform i am attaching the function i should do the DFT. i need guidance and code example.
thanks a lot Moshe
Respuestas (2)
Kevin
el 29 de Abr. de 2016
f = 10; % 10 Hz.
t = (0:2047)/100; % 100 Hz sampling rate.
x = sin(2*pi*f*t);
X = fft(x);
Categorías
Más información sobre Transforms en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!