LTPDA_STRS2CELLS convert a set of input strings to a cell array. function cell = ltpda_strs2cells(varargin) M Hewitson $Id: ltpda_strs2cells.html,v 1.1 2007/06/08 14:15:10 hewitson Exp $
0001 function cell = ltpda_strs2cells(varargin) 0002 0003 % LTPDA_STRS2CELLS convert a set of input strings to a cell array. 0004 % 0005 % function cell = ltpda_strs2cells(varargin) 0006 % 0007 % M Hewitson 0008 % 0009 % $Id: ltpda_strs2cells.html,v 1.1 2007/06/08 14:15:10 hewitson Exp $ 0010 % 0011 0012 cell = []; 0013 for j=1:nargin 0014 0015 cell = [cell cellstr(varargin{j})]; 0016 0017 end 0018 0019 0020 0021 % END