Filter löschen
Filter löschen

Time delay for time domain function?

2 Ansichten (letzte 30 Tage)
ckchew
ckchew am 2 Jul. 2011
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!

Akzeptierte Antwort

Rick Rosson
Rick Rosson am 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.

Weitere Antworten (1)

ckchew
ckchew am 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!^^

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by