Skip to content
Snippets Groups Projects
Commit 09846315 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Merge branch 'autotransform' into 'master'

x13: save result of function=auto to results if savelog was requested

See merge request !48
parents 306f06b9 f2bdd617
Branches
No related tags found
1 merge request!48x13: save result of function=auto to results if savelog was requested
Pipeline #8666 passed
......@@ -110,6 +110,10 @@ if ~all(cellfun(@isempty, struct2cell(o.transform)))
end
end
end
if strcmp(o.transform.function,'auto') && any(strmatch(o.transform.savelog,{'autotransform','atr'},'exact'))
temp=fileread(sprintf('%s.log', basename));
o.results.autotransform=regexp(temp,'[^\n]*Automatic transformation test[^\n]*','match');
end
end
% Save results related to the OUTLIER command
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment