view 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
line wrap: on
line source
% zip - Polymorphic zip using zipwith(@tuple,...)
function y=zip(varargin)
	y=zipwith(@tuple,varargin{:});
end