how can i split a speech signal into 3 equal parts??

Respuestas (2)

Tobias
Tobias el 28 de Abr. de 2013

0 votos

Quick google search:
Azzi Abdelmalek
Azzi Abdelmalek el 28 de Abr. de 2013
x=[1 2 3 4 5 6 7 8]
n=round(numel(x)/2)
x1=x(1:n)
x2=x(n+1:end)

1 comentario

x=[1 2 3 4 5 6 7 8]
n=round(numel(x)/3)
x1=x(1:n)
x2=x(n+1:2*n)
x3=x(2*n+1:end)

Iniciar sesión para comentar.

Categorías

Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 28 de Abr. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by