% Matlab module to read in a table of results from file % and compute the mean score % Compose the full path and filename baselineFile = cat(2, resDir, '/baseline/', 'clean.acc'); % Read in the contents of the file cleanB = load(baselineFile); % Calculate the average meanCleanB = mean(cleanB);