view sequences/unfold.m @ 42:ae596261e75f

Various fixes and development to audio handling
author samer
date Tue, 02 Dec 2014 14:51:13 +0000
parents 28c9ff839f38
children
line wrap: on
line source
% unfold - sequence obtained by iterating fn over state
%
% unfold :: 
%    (S->A,S)	~'unfolding function',
%    S         ~ initial state,
% -> unfold(S,A) < seq(A).

function y=unfold(f,s0), y=seq.unfold(f,s0);