view general/funutils/zip.m @ 42:ae596261e75f

Various fixes and development to audio handling
author samer
date Tue, 02 Dec 2014 14:51:13 +0000
parents fbc0540a9208
children
line wrap: on
line source
% zip - Polymorphic zip using zipwith(@tuple,...)
%
% zip :: seq(A1), seq(A2), ... -> seq(cell {A1,A2,..}).
% zip :: cells(A1), cells(A2), ... -> cells(cell {A1,A2,..}).
function y=zip(varargin)
	y=zipwith(@tuple,varargin{:});
end