Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
NCTM or The Math Forum.
|
|
Math Forum
»
Discussions
»
Software
»
comp.soft-sys.matlab
Notice: We are no longer accepting new posts, but the forums will continue to be readable.
Topic:
importing a wav file not working for matlab newbie.
Replies:
2
Last Post:
Oct 25, 2010 1:37 PM
|
 |
|
|
Re: importing a wav file not working for matlab newbie.
Posted:
Jun 16, 2009 9:40 AM
|
|
Anonymous wrote in message <1423959.1924.1245157919541.JavaMail.jakarta@nitrogen.mathforum.org>... > hi, i just started using matlab 2day, and i need to import a wav file into matlab.. > y = wavread ('test1') > im using the above code . but i keep getting the error message saying > ??? Error using ==> wavread at 67 > Cannot open file. > > i dont know what this is, or what it mean, can anyone help. > thanks.
Hi!
Try using this:
>>y=wavread('test1.wav')
And make sure that test1.wav is in the default folder of matlab.
To be sure of that type in command window:
>>pwd
|
|
|
|