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

📄 temptrain.m

📁 压缩包中的一系列matlab程序实现了“特定人群语音情感识别”这一新颖的研究课题。具体介绍请见压缩包中的论文。
💻 M
字号:
function temptrain(str,tempname,path,ele,sel)
si=size(str);
if sel==1
    try
        disp('use old template');
        s=load([path,tempname]);
        temp=s.temp;
    catch
        disp('create new template');
    end
elseif sel==0
    disp('create new template');
end
for k=1:length(str)
    xy=[ele(k);paracal([path,str(k,:)])];
    try
        temp=[temp,xy];
    catch
        temp=xy;
    end
end
save([path,tempname],'temp');

⌨️ 快捷键说明

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