Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
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.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 8 Dez. 2016
D = round(delay*fs);

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by