Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
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.

Respuesta aceptada

Walter Roberson
Walter Roberson el 8 de Dic. de 2016
D = round(delay*fs);

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by