implemented flanger

This commit is contained in:
Arthur Lu 2021-12-12 22:22:12 -08:00
parent 9218db1b6d
commit af4889ef31
2 changed files with 1 additions and 1 deletions

BIN
app.mlapp

Binary file not shown.

View File

@ -31,7 +31,7 @@ osc_wave = abs(sin(2*pi*index*(osc_freq/Fs)));
% convert delay in time to delay in samples
sample_delay=round(time_delay*Fs);
% create empty output array
output = zeros(len,1);
output = zeros(1, len);
% Generating delay for each sample from reference oscillation wave
% start loop at sample_delay to make sure delayed sample is from t>=0