필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
Sony
Sony 2013년 4월 28일
can any1 help me with matlab code pls!!!

답변 (2개)

Tobias
Tobias 2013년 4월 28일
Quick google search:

Azzi Abdelmalek
Azzi Abdelmalek 2013년 4월 28일
x=[1 2 3 4 5 6 7 8]
n=round(numel(x)/2)
x1=x(1:n)
x2=x(n+1:end)
  댓글 수: 1
Azzi Abdelmalek
Azzi Abdelmalek 2013년 4월 28일
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)

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

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by