How can I plot a 144000 sample sound file in separate windows with 400 samples with for loop?
2 views (last 30 days)
Show older comments
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 Comments
Answers (1)
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!
0 Comments
See Also
Categories
Find more on Axes Appearance in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!