How to unfold (spread) vector?

1 回表示 (過去 30 日間)
David Hatle
David Hatle 2016 年 5 月 3 日
コメント済み: David Hatle 2016 年 5 月 3 日
Hello I have a problem while analysing speech. I am trying to detect pauses. I have calculated envelope of the energy of the signal and autocorrelation of the signal. I have two borders - f and 500 that I am comparing them in code below:
for i = 1:length(speech)
if env_energy(i) == f && corr(i) < 500
%do something
end
end
The problem is that env_energy has 1557230 samples and corr only 648 samples. Can you tell me how to spread corr vector so that it doesn´t exceed matrix dimensions in for loop? Thank you

採用された回答

CS Researcher
CS Researcher 2016 年 5 月 3 日
編集済み: CS Researcher 2016 年 5 月 3 日
You can use interp1. Try this:
newRange = linspace(1, numel(corr), numel(env_energy));
newCorr = interp1(1:numel(corr),corr,newRange);
Hope this helps!
  1 件のコメント
David Hatle
David Hatle 2016 年 5 月 3 日
It works great! Thank you

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSignal Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by