Effacer les filtres
Effacer les filtres

Assigning time points on X axis

2 vues (au cours des 30 derniers jours)
Sonia Wiemann
Sonia Wiemann le 16 Avr 2012
I have a wav file imported as data points. I know the sampling rate is 44.1kHz per sec. I know that the file contains 18, 873 samples. How can I assign time on the x axis in msec?
  1 commentaire
Geoff
Geoff le 16 Avr 2012
http://www.mathworks.com.au/matlabcentral/answers/34874-assigning-time-on-x-axis-for-audio-samples

Connectez-vous pour commenter.

Réponse acceptée

Kye Taylor
Kye Taylor le 17 Avr 2012
If your sampling frequency is 44.1 kHz, then one millisecond comprises 44.1 time samples. So, if x represents the vector of 18,873 samples, the following yields integer values on the x-axis representing milliseconds, starting at time zero:
plot((0:length(x)-1)/44.1, x)
  1 commentaire
Sonia Wiemann
Sonia Wiemann le 17 Avr 2012
Thanks!

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by