Frequency resolution of random process
Mostrar comentarios más antiguos
I have got a random process with 100 samples. What frequency resolution can be obtained with traditional methods of Power Spectral Density calculation? How can I do this in matlab?
Respuestas (2)
Image Analyst
el 11 de Oct. de 2015
0 votos
Have you tried using pwelch() or periodogram()?
1 comentario
Raziur Rahman
el 13 de Oct. de 2015
Walter Roberson
el 11 de Oct. de 2015
0 votos
Neither traditional methods nor MATLAB can obtain any frequency resolution based solely on 100 random samples. In order to obtain any frequency resolution, it is necessary for there to be times associated with each of the samples, as frequency has to do with change in time.
2 comentarios
Raziur Rahman
el 13 de Oct. de 2015
Walter Roberson
el 13 de Oct. de 2015
Question:
Let X = 0:0.01:100 . Let it be in the time domain. What is the frequency resolution of that X, using any method you want?
Answer: You cannot know based upon only that information.
Question: add the assumption that the times of the samples are
t = sort( rand(1,100) * 20 );
Answer:
Now you have a chance of determining the frequency resolution.
The frequency resolution is 1/2 of the lowest common multiple of the time differences diff(t) when expressed in rational form.
Categorías
Más información sobre Spectral Measurements en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!