view sequences/repeat.m @ 53:3ba80c9914ff

Minor doc fix, added .class to .hgignore
author samer
date Mon, 02 Feb 2015 10:47:55 +0000
parents b1280319413e
children
line wrap: on
line source
% repeat - infinite sequence of repeated element
%
% repeat :: A -> seq(A).
function z=repeat(x), z=seq.repeat(x); end