view general/arrutils/foldcols.m @ 44:3cedfd4549ef

Code added since initial check in.
author samer
date Tue, 13 Jan 2015 14:03:17 +0000
parents fbc0540a9208
children
line wrap: on
line source
% foldcols - fold from left combinator for columns of an array
%
% foldcols :; 
%    (A,[[N]]->A) ~'folding function',
%    A            ~'initial value',
%    [[N,L]]      ~'data to scan, sequence of length L'
% -> A.

function y=foldcols(f,y,X)
	for i=1:size(X,2), y=f(y,X(:,i)); end
end