comparison Code/Descriptors/Matlab/MPEG7/FromWeb/VoiceSauce/func_setwavdir.m @ 4:92ca03a8fa99 tip

Update to ICASSP 2013 benchmark
author Dawn Black
date Wed, 13 Feb 2013 11:02:39 +0000
parents
children
comparison
equal deleted inserted replaced
3:e1cfa7765647 4:92ca03a8fa99
1 function VSData = func_setwavdir(whoami, new_dir, VSData)
2 % VSData = func_setmatdir(whoami, new_dir, VSData)
3 % Notes: Conditionally sets the global settings for wav directories
4 %
5 % Author: Yen-Liang Shue, Speech Processing and Auditory Perception Laboratory, UCLA
6 % Copyright UCLA SPAPL 2009
7
8 if (VSData.vars.linkwavdir)
9 VSData.vars.PD_wavdir = new_dir;
10 VSData.vars.MD_wavdir = new_dir;
11 VSData.vars.wavdir = new_dir;
12 else
13 VSData.vars.(whoami) = new_dir;
14 end
15