If you want to delete the file names from the files array....
load('example.mat')
select = strcmp(out, 'F');
files(select) = [];
% or
% files(select) = {''}; % replace with empty
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!