segmentation of 66s signal in 1s each

1 visualización (últimos 30 días)
Sanjeeb jung Thakuri
Sanjeeb jung Thakuri el 20 de Oct. de 2022
Respondida: jibrahim el 20 de Oct. de 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?

Respuestas (1)

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

Categorías

Más información sobre Signal Processing Toolbox 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!

Translated by