How can I plot a 144000 sample sound file in separate windows with 400 samples with for loop?

1 view (last 30 days)
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.

Answers (1)

Walter Roberson
Walter Roberson on 9 May 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!

Community Treasure Hunt

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

Start Hunting!