segmentation of 66s signal in 1s each

2 Ansichten (letzte 30 Tage)
Sanjeeb jung Thakuri
Sanjeeb jung Thakuri am 20 Okt. 2022
Beantwortet: jibrahim am 20 Okt. 2022
I have audio signal of 66seconds and want to segment it into 1second each with for loop. what can I do to segment a audiosignal into equal parts?

Antworten (1)

jibrahim
jibrahim am 20 Okt. 2022
The buffer function can do this for you:
fs = 16e3;
x = randn(66*fs,1);
y = buffer(x,fs);

Kategorien

Mehr zu Signal Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by