Clear Filters
Clear Filters

Time delay for time domain function?

2 views (last 30 days)
Hellow there everyone...i am new to matlab and i have some enquiry regarding time delay...let's say i have a .wav file which consists of my voice (will be using wavread to read the wav file). is there any way i can implement a time delay like for instance:
original signal s(t) delayed version s(t-T), where T=delay
any ideas for implementing s(t-T)? any help or advice will be greatly appreciated!

Accepted Answer

Rick Rosson
Rick Rosson on 2 Jul 2011
Please try the following:
filename = 'myvoice.wav';
[ x Fs ] = wavread(filename);
[M,N] = size(x);
T = 0.2;
D = Fs*T;
y = [ zeros(D,N) ; x ] ;
x = [ x ; zeros(D,N) ] ;
dt = 1/Fs;
t = dt*(0:M-1)';
figure;
plot(t,x, t,y);
HTH.

More Answers (1)

ckchew
ckchew on 2 Jul 2011
Hello there Rick! you're using the principle of zero padding to implement the time delay? that's ingenius! Thank you so much for the idea and code, it really helped a lot!:) have a pleasant day ahead!^^

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!