フィルターのクリア

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:
  1 件のコメント
Sony
Sony 2013 年 4 月 28 日
sorry i dint understand that....

サインインしてコメントする。


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 Center および File ExchangeAudio and Video Data についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by