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

답변 (2개)

Tobias
Tobias 2013년 4월 28일

0 개 추천

Quick google search:
Azzi Abdelmalek
Azzi Abdelmalek 2013년 4월 28일

0 개 추천

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

댓글 수: 1

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)

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

질문:

2013년 4월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by