view m-toolbox/classes/+utils/@xml/getHistoryFromUUID.m @ 42:f90d4f666cc7
database-connection-manager
Cleanup
author
Daniele Nicolodi <nicolodi@science.unitn.it>
date
Mon, 05 Dec 2011 18:04:34 +0100 (2011-12-05)
parents
f0afece42f48
children
line source
+ −
+ − function h = getHistoryFromUUID(hists, inhistUUID)
+ −
+ − h = [];
+ − for ii = 1:numel(hists)
+ − if strcmp(hists(ii).UUID, inhistUUID)
+ − h = hists(ii);
+ − break;
+ − end
+ − end
+ −
+ − if isempty(h)
+ − error('### Didn''t find a history object with the UUID [%s]', inhistUUID)
+ − end
+ −
+ − end