Code covered by the BSD License  

Highlights from
A Numerical Tour of Signal Processing

from A Numerical Tour of Signal Processing by Gabriel Peyre
A set of Matlab experiments that illustrates advanced computational signal and image processing.

cell_sub(x,sel)
function y = cell_sub(x,sel)

% cell_sub - extract a sub-cell array
%
%   y = cell_sub(x,sel);
% is equivalent with
%   y = {x{sel}};
%
% Copyright (c) Gabriel Peyre 2008

y = {x{sel}};

Contact us at files@mathworks.com