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 CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by