Mercurial > hg > ltpda
view m-toolbox/classes/@unit/split.m @ 24:056f8e1e995e database-connection-manager
Properly record history in fromRepository constructors
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Mon, 05 Dec 2011 16:20:06 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
% SPLIT split a unit into a set of single units. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % DESCRIPTION: SPLIT split a unit into a set of single units. % % CALL: units = split(unit) % % VERSION: $Id: split.m,v 1.2 2011/02/18 16:48:55 ingo Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function us = split(u) us = []; for kk=1:numel(u.strs) nu = unit; nu.strs = u.strs(kk); nu.exps = u.exps(kk); nu.vals = u.vals(kk); us = [us nu]; end end