Acceleration vs Time data into FFT
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
nur yusof
el 17 de En. de 2015
Comentada: nur yusof
el 21 de En. de 2015
I have acceleration vs time data. I want to get FFT value from the data.Can someone show me the way?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Shoaibur Rahman
el 17 de En. de 2015
Define the number of DFT points N, and then perform the fft.
N = pow2(nextpow2(length(signal)));
y = fft(signal,N);
plot(1:N,abs(y))
If the length of your signal is a big number then set the value of N manually to a lower value, like N = 64, 128, 256, etc. This will make your figure to look better sometime, but note that that may not be accurate always from the computational point of view.
8 comentarios
Ver también
Categorías
Más información sobre Fourier Analysis and Filtering 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!