Effacer les filtres
Effacer les filtres

Time delay for time domain function?

2 vues (au cours des 30 derniers jours)
ckchew
ckchew le 2 Juil 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!

Réponse acceptée

Rick Rosson
Rick Rosson le 2 Juil 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.

Plus de réponses (1)

ckchew
ckchew le 2 Juil 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!^^

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by