フィルターのクリア

how to remove this error

2 ビュー (過去 30 日間)
Dilawar Khan
Dilawar Khan 2017 年 5 月 7 日
コメント済み: Dilawar Khan 2017 年 5 月 7 日
??? Error using ==> fileparts at 17
Input must be a row vector of characters.
Error in ==> wavread>open_wav at 193
[pat,nam,ext] = fileparts(file);
Error in ==> wavread at 65
[fid,msg] = open_wav(file);
Error in ==> comparing at 10
z=wavread(record);
Error in ==> voice at 10
comparing(sample_freq);
my program is this
function[z]=comparing(sample_freq)
record_len = 2; %Record time length in seconds
open_lock='test';
sample_time = sample_freq * record_len;
disp('kindly speak to open the lock');
f = sprintf('%s.wav',open_lock);
input('Press enter when ready to record--> ');
record = wavrecord(sample_time, sample_freq); %Records the input through the sound card to the variable with specified sampling frequency
wavwrite(record, sample_freq, f);
z=wavread(record);
x=z;
can some one help me ,thanks alot
  1 件のコメント
Guillaume
Guillaume 2017 年 5 月 7 日
What version of matlab are you using? The last version of matlab that had wavrecord was R2013b. Time to upgrade?

サインインしてコメントする。

回答 (2 件)

Walter Roberson
Walter Roberson 2017 年 5 月 7 日
z = wavread(f);
  1 件のコメント
Dilawar Khan
Dilawar Khan 2017 年 5 月 7 日
yes its work ,thankx alot bro :)

サインインしてコメントする。


Guillaume
Guillaume 2017 年 5 月 7 日
I suspect you want
z = wavread(f);
%and what's the point of x=z on the next line. Read the file as x directly if you must
%better use variable names that have meaning
The output of wavrecord is not a file name, so I don't understand why you tried to pass to wavread.
Note that wavrecord has not been part of matlab since R2014a.
  1 件のコメント
Dilawar Khan
Dilawar Khan 2017 年 5 月 7 日
thnkx i understand your point i will use variable

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by