badman
Computer
- Dec 6, 2004
- 4
using
data = wavread('1.wav')
I basically need something that will remove any silence before the sound kicks in.
something like this :
X = 0
while data(X) < 0.1
delete data(X)
X++
I don't know much about matlab except that the help filee is really vague on whiles and you can only delet files and not information on files, so i'm very stuck on this.