view general/funutils/@function_handle/foldr.m @ 61:eff6bddf82e3 tip

Finally implemented perceptual brightness thing.
author samer
date Sun, 11 Oct 2015 10:20:42 +0100
parents 03694e5c8365
children
line wrap: on
line source
function X=foldr(fn,e,args)
% foldr - Fold from the right combinator 
%
% foldr :: (Y,X->X),	Y, cells(Y) -> Y.
%
% This function applies an associative 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)))).
X=e; for i=length(args):-1:1, X=fn(args{i},X); end