%% purge % Removes useless data from the block on saving, avoiding unnecessary % changes and data storage. % inputs: % object - RGrid object % outputs: % none % Author: Matthew Dawson % Organization: McMaster Centre for Software Certification function purge( object ) for i = 1:size(object.Cells, 2) object.Cells(i).purge; end end