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

1 vue (au cours des 30 derniers jours)
Sony
Sony le 28 Avr 2013
can any1 help me with matlab code pls!!!

Réponses (2)

Tobias
Tobias le 28 Avr 2013
Quick google search:
  1 commentaire
Sony
Sony le 28 Avr 2013
sorry i dint understand that....

Connectez-vous pour commenter.


Azzi Abdelmalek
Azzi Abdelmalek le 28 Avr 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 commentaire
Azzi Abdelmalek
Azzi Abdelmalek le 28 Avr 2013
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)

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by