Mercurial > hg > ishara
view general/cellutils/cfoldr.m @ 42:ae596261e75f
Various fixes and development to audio handling
author | samer |
---|---|
date | Tue, 02 Dec 2014 14:51:13 +0000 |
parents | 03694e5c8365 |
children |
line wrap: on
line source
function X=foldr(fn,e,args) % foldr - Fold from the right for cell arrays % % This function applies an operator to a list of arguments, % starting from the right, eg % elements, eg foldr(@plus,0,{1,2,3,4}) = (1+(2+(3+(4+0)))). % % foldr :: % (Y,X->X) ~'associative binary operator', % Y ~'initial element', % {[N]->Y} ~'list (cell array) of arguments' % -> Y. X=e; for i=length(args):-1:1, X=fn(args{i},X); end