使用matlab记录并保存在特定文件夹中

时间:2015-05-24 12:49:54

标签: matlab user-interface save record wav

我正在录制声音并使用wavwrite保存wav文件,但我需要将其保存在C:中的特定文件夹中,例如c:\ monitoringsystem。 这是我的代码的一部分:

org.apache.httpcomponents:httpclient:4.4.1

1 个答案:

答案 0 :(得分:0)

您可以在声音名称中包含文件路径。

         name=strcat(year,'-',month,'-',day,'-',hour,'-',min,'-',sec);

         fullpath = fullfile('C:\MYFOLDER',name);

         wavwrite(y,44100,fullpath);