⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scanfolder.m

📁 压缩包中的一系列matlab程序实现了“特定人群语音情感识别”这一新颖的研究课题。具体介绍请见压缩包中的论文。
💻 M
字号:
function [str,ele]=scanfolder(path,mch,no)

for k=1:length(mch)
    s=dir([path,'*',mch(k),'*.wav']);
    clear strp;
    clear elep;
%     length(s)
    for i=1:length(s)
        fname=s(i).name;
        strp(i,:)=fname(1:end-4);
        elep(i)=no(k);
    end
    try 
        str=[str;strp];
        ele=[ele,elep];
    catch
        str=strp;
        ele=elep;
    end
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -