Borrar filtros
Borrar filtros

How to give a variable(here 17658x2 matrix) some proper units desired ?

1 visualización (últimos 30 días)
[y,fs] = audioread('damn-it.wav');
plot(y); ----
when this code runs audio is stored in 'y' and on plotting ,it shows numbers from zero to 17658 on x-axis. I want to know amplitude at different times so x-axis unit in secs(here 'usec') is desired.

Respuesta aceptada

Walter Roberson
Walter Roberson el 24 de Feb. de 2018
t = (0:size(y,1)-1)/fs;
plot(t, y)
  10 comentarios
Abhishek Maurya
Abhishek Maurya el 27 de Feb. de 2018
Thank you,Yes, you are right. But sum(ismembertol(y, 0.1)); is also not tolerant enough for 16 bit signed representation of wav files. Its giving zero for every values.
Walter Roberson
Walter Roberson el 27 de Feb. de 2018
Read the documentation for ismembertol on how to provide your own tolerance

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Audio I/O and Waveform Generation 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!

Translated by