annotate sequences/repeat.m @ 61:eff6bddf82e3 tip

Finally implemented perceptual brightness thing.
author samer
date Sun, 11 Oct 2015 10:20:42 +0100
parents b1280319413e
children
rev   line source
samer@23 1 % repeat - infinite sequence of repeated element
samer@23 2 %
samer@23 3 % repeat :: A -> seq(A).
samer@3 4 function z=repeat(x), z=seq.repeat(x); end