How can I plot a 144000 sample sound file in separate windows with 400 samples with for loop?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a plot of an audio file with 144000 samples. You can see it in attachments. I would like to plot and examine this 144000 samples sound file in separate windows, each with 400 samples. I mean each window will contain 400 samples of it. How can I do that. I will be glad if you can help.
0 comentarios
Respuestas (1)
Walter Roberson
el 9 de Mayo de 2021
d400 = reshape(YourData, 400, []);
for K = 1 : size(d400,2)
fig = figure();
ax = axes(fig);
plot(d400(:,K));
title(sprintf('Window #%d', K));
end
I do not recommend this! You would be generating 360 figures!
0 comentarios
Ver también
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!