Home > m > helper > ltpda_strs2cells.m

ltpda_strs2cells

PURPOSE ^

LTPDA_STRS2CELLS convert a set of input strings to a cell array.

SYNOPSIS ^

function cell = ltpda_strs2cells(varargin)

DESCRIPTION ^

 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 $

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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

Generated on Fri 08-Jun-2007 16:09:11 by m2html © 2003