annotate general/funutils/zip.m @ 8:f0a3d7d7a0e3

Renamed cat_sep function to catsep
author samer
date Mon, 14 Jan 2013 14:54:10 +0000
parents e44f49929e56
children fbc0540a9208
rev   line source
samer@4 1 % zip - Polymorphic zip using zipwith(@tuple,...)
samer@4 2 function y=zip(varargin)
samer@4 3 y=zipwith(@tuple,varargin{:});
samer@4 4 end