%% TEST cd test for u=1:8 load(['data/aurora/Variables/TIMIT/Sources/Test_DR' num2str(u) '.mat']) for i=1:size(Test) data = cell2mat(Test{i,5}); targets = cell2mat(Test{i,7}(2,:)) samplename = lower(['DR' num2str(u) '/' Test{i,1} '/' strrep(Test{i,2},'.sph','')]); save(samplename, 'data', 'targets', 'samplename') end end for i=1:size(inputs,2) data = cell2mat(inputs(i)); targets = cell2mat(outputs(i)); filename = ['sample' num2str(i) '.mat']; save(filename, 'data', 'targets') end cd ..