% Get list of trials and process

clear all;close all;clc

run trials_listing

for i=1:length(list)
    
    outfile = fullfile('/home/jorge/Escritorio/Results',list{i}.results_file_name);
    mixTrials(list{i}.trials,outfile);
end

