annotate general/funutils/@function_handle/scanl.m @ 28:673b8e45d05a

Tidied up indentation.
author samer
date Sat, 19 Jan 2013 14:40:54 +0000
parents 03694e5c8365
children
rev   line source
samer@13 1 % scanl - scanl for cell arrays
samer@13 2 %
samer@13 3 % scanl ::
samer@13 4 % (S,X->S) ~'scannning function',
samer@13 5 % S ~'initial value',
samer@13 6 % {[N]->X} ~'data to scan, sequence of length L'
samer@13 7 % -> {[N]->S}.
samer@13 8 function Y=scanl(f,y,X), Y=cscanl(f,y,X); end