how can i split a speech signal into 3 equal parts??
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Risposte (2)
Azzi Abdelmalek
il 28 Apr 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 Commento
Azzi Abdelmalek
il 28 Apr 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)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!