segmentation of 66s signal in 1s each

2 vues (au cours des 30 derniers jours)
Sanjeeb jung Thakuri
Sanjeeb jung Thakuri le 20 Oct 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?

Réponses (1)

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

Catégories

En savoir plus sur Signal Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by