Skip to content
Snippets Groups Projects
Verified Commit b48aef87 authored by leprob001's avatar leprob001
Browse files

feat: IBCSO file is no longer saved in an interim file

parent c34fe5db
No related branches found
No related tags found
No related merge requests found
......@@ -17,12 +17,19 @@ end
filepath = fullfile(pathname, filename);
%% Store artoaDataInput
tmp = artoaDataInput;
%% Remove path_rfb
if isfield(artoaDataInput, 'path_rfb')
tmp = artoaDataInput;
artoaDataInput = rmfield(artoaDataInput, 'path_rfb');
end
%% Remove ibcso (to reduce interim file size)
if isfield(artoaDataInput, 'ibcso')
artoaDataInput = rmfield(artoaDataInput, 'ibcso');
end
save(filepath, 'artoaWorkspace', 'artoaDataInput', 'artoaConfig');
%% Restore if required
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment