comparison general/tuple.m @ 32:c3b0cd708782

Imported core dsp tools.
author samer
date Sun, 20 Jan 2013 13:48:47 +0000
parents e44f49929e56
children
comparison
equal deleted inserted replaced
31:8cc4f326fc66 32:c3b0cd708782
1 function x=tuple(varargin), x=varargin;
2 % tuple - collect arguments into a cell array 1 % tuple - collect arguments into a cell array
3 % 2 %
3 % tuple :: A{1:N} -> cell A@typelist(N).
4 %
4 % ie tuple(a,b,c,...) = {a,b,c,....} 5 % ie tuple(a,b,c,...) = {a,b,c,....}
6 function x=tuple(varargin), x=varargin;