view general/tuple.m @ 32:c3b0cd708782

Imported core dsp tools.
author samer
date Sun, 20 Jan 2013 13:48:47 +0000
parents e44f49929e56
children
line wrap: on
line source
% tuple - collect arguments into a cell array
%
% tuple :: A{1:N} -> cell A@typelist(N).
%
% ie tuple(a,b,c,...) = {a,b,c,....}
function x=tuple(varargin), x=varargin;