i am trying to read the .wav file through "wavread" giving path of wave using following code but it always give error 67(i-e ??? Error using ==> wavread at 67 Cannot open file)

6 次查看(过去 30 天)
[FileName,PathName] = uigetfile('AUD-20150716-WA0032.wav');
PathOriginal=sprintf('%s%s',C:\Users\Downloads,AUD-20150716-WA0032);
[xt,fs]=wavread('C:\Users\Downloads');
please help anyone ???

采纳的回答

Walter Roberson
Walter Roberson 2015-7-22
编辑:Walter Roberson 2015-7-22
[FileName,PathName] = uigetfile('AUD-20150716-WA0032.wav');
PathOriginal = fullfile(PathName, FileName);
[xt,fs] = wavread(PathOriginal);
Or, along the lines that B.k Sumedha suggests:
PathOriginal = fullfile('C:\Users\Downloads', 'AUD-20150716-WA0032.wav');
[xt, fs] = wavread(PathOriginal);
The difference between these two is that the second one has a fixed file name, whereas the first one allows the users to navigate to other locations to pick a file.
  1 个评论
lione felus
lione felus 2015-7-22
编辑:lione felus 2015-7-22
thanks walter it works .but by appling filter the sound is still not audible .my code is PathOriginal = fullfile('C:\Users\Documents\MATLAB', 'AUD-20150716-WA0032.wav') [y, Fs, n] = wavread(PathOriginal)
b=1; a=0.1; a=[1 -0.1];
x(n)=y(n)-0.1*y(n-1); y=filter(b,a,x)
what command should i use to hear the sound before and after applying filter??

请先登录,再进行评论。

更多回答(1 个)

B.k Sumedha
B.k Sumedha 2015-7-22
You can directly use
y = wavread('filename')
y = wavread('filename') loads a WAVE file specified by the string filename, returning the sampled data in y. The .wav extension is appended if no extension is given. Amplitude values are in the range [-1,+1].

类别

Help CenterFile Exchange 中查找有关 Application Deployment 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by