フィルターのクリア

Attempted to access som(5513.5); index must be a positive integer or logical

1 回表示 (過去 30 日間)
delay = 0.5; %atraso de 0.5s
echost = 0.7; %força do eco
D = delay*fs;
reverb_som = zeros(size(som));
for i = D+1:1:length(som);
reverb_som(i) = som(i)+echost*som(i-D);
end;
I've tried rounding i but it still presents the same error. I've also tried switching i for a constant but it's still the same. I really don't know what to do, could you please give hand? Thanks.

採用された回答

Walter Roberson
Walter Roberson 2016 年 12 月 8 日
D = round(delay*fs);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by