フィルターのクリア

How to put wav file as input argument of a function ?

2 ビュー (過去 30 日間)
Jimmy Wong See Woei
Jimmy Wong See Woei 2014 年 8 月 26 日
回答済み: W. Owen Brimijoin 2014 年 8 月 26 日
Hi everyone, my problem is how to put wav file as input argument of a function
function[]=down4up4_nofilt(Songbird.wav,Songbird.wav);
There is error in this line of code. The error is happened at the 2 dots in front of wav. And MATLAB error commend is "Possibly, a ) or } or } is missing."
Please help me solve this problem. Thank you,
Jimmy

回答 (1 件)

W. Owen Brimijoin
W. Owen Brimijoin 2014 年 8 月 26 日
You need to load the signal that's in the file 'Songbird.wav' into the Matlab workspace first:
stimulus = audioread('Songbird.wav');
output = down4up4_nofilt(stimulus,stimulus);

カテゴリ

Help Center および File ExchangeSpectral Measurements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by