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

조회 수: 2 (최근 30일)
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.

답변 (1개)

Walter Roberson
Walter Roberson 2021년 5월 9일
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!

카테고리

Help CenterFile Exchange에서 Audio I/O and Waveform Generation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by