implemented flanger
This commit is contained in:
parent
9218db1b6d
commit
af4889ef31
@ -31,7 +31,7 @@ osc_wave = abs(sin(2*pi*index*(osc_freq/Fs)));
|
|||||||
% convert delay in time to delay in samples
|
% convert delay in time to delay in samples
|
||||||
sample_delay=round(time_delay*Fs);
|
sample_delay=round(time_delay*Fs);
|
||||||
% create empty output array
|
% create empty output array
|
||||||
output = zeros(len,1);
|
output = zeros(1, len);
|
||||||
|
|
||||||
% Generating delay for each sample from reference oscillation wave
|
% Generating delay for each sample from reference oscillation wave
|
||||||
% start loop at sample_delay to make sure delayed sample is from t>=0
|
% start loop at sample_delay to make sure delayed sample is from t>=0
|
Reference in New Issue
Block a user