フィルターのクリア

Dividing speech signal into short-time segments?

2 ビュー (過去 30 日間)
jack star
jack star 2016 年 4 月 12 日
コメント済み: SSV 2019 年 10 月 13 日
Hi all. I created a speech signal in Matlab. I need to divide speech signal into short-time segments with lengths 150 samples. Later I will process each segment to determine if it is voiced or unvoiced, and pitch period for voiced speechs. Here is the info:

採用された回答

Baltam
Baltam 2016 年 4 月 12 日
If your sound signal is a vector, try to use reshape. For example from the info I understand that your sound signal would be a vector with 72000 elements which you want to divide in groups of 150.
SeperatedSoundSignal = reshape(soundSignal,150,72000/150);
This will convert your vector into 72000/150 columns which have each 150 elements/samples.
Kind regards, Baltam
  6 件のコメント
jack star
jack star 2016 年 4 月 12 日
編集済み: jack star 2016 年 4 月 12 日
Thank you very much.
SSV
SSV 2019 年 10 月 13 日
Hi, I have a doubt in case if we couldnt make it as a square matrix then what is the alternative way?
In my case I have 112456x1 , I need to do the segmentation for 600 samples per segment .

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAI for Audio についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by