MATLAB (2)

1 Name: #!usr/bin/anon 2005-11-28 09:20 ID:V18wGE1O

Hey guys. I'm an EE student stuck on a stupid problem for DSP. I have a voice recording that I made using the wavrecord function. Its a single vector of values (VERY long) named y. Now my problem is how do I reverse the time on it, when the timing vector is already embedded? Reversing the plot is no problem:

%original plot

tt= 0:9.0704e-5:6.5;
plot(tt,y)

%time reversed:

minus_tt= 7.5-tt;
plot(minus_tt,y)

My requirement is to wavwrite this file as a .wav. Therefore I should be able to use the normal tt with the modified signal. Help please :D

2 Name: #!usr/bin/anon 2005-12-26 00:03 ID:Heaven

2GET

This thread has been closed. You cannot post in this thread any longer.