Mercurial > hg > ishara
view sequences/@seq/split_gather.m @ 6:0ce3c2070089
Removed duplicate code and fixed doc in timed_action.
author | samer |
---|---|
date | Mon, 14 Jan 2013 14:33:37 +0000 |
parents | 3f77126f7b5f |
children |
line wrap: on
line source
function [h,t]=split(dim,n,s) % split - gather first n elements and return with rest of sequence % % split :: D:natural, N:natural, seq A -> [[N]->A], seq A % !! prevent array growth h=[]; for i=1:n, x=head(s); h=cat(dim,h,x); s=next(s); end t=s;