In case processing .wav file what would the input to DWT fucntion ?
2 views (last 30 days)
Show older comments
So here is the formula of DWT as you can see
[cA,cD] = dwt(X,'wname')
cA = approximation coefficients vector
cD = detail coefficients vector
X = vector x
But in case of processing .wav file what would X be?
0 Comments
Accepted Answer
Walter Roberson
on 22 Feb 2013
X = wavread('YourFile.wav');
Or possibly
X = wavread('YourFile.wav') ';
More Answers (0)
See Also
Categories
Find more on Discrete Multiresolution Analysis 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!