Initial commit
[pftoolbox.git] / expressions / @xsymbolic / private / convert2char.m
blob55bd35d7bbc2f01cfade11c19749822a5bcbb53c
1 function expr=convert2char(expr);\r
2 %CONVERT2CHAR   Input arguments:\r
3 %               1) expr: An cell array containing inline functions, symetric expressions\r
4 %               or strings (that will be return "as they are").\r
5 %\r
6 % Converts the cell elements to string.\r
7 \r
8 % Toolbox for nonlinear filtering.\r
9 % Copyright (C) 2005  Jakob Rosén <jakob.rosen@gmail.com>\r
10 %\r
11 % This program is free software; you can redistribute it and/or\r
12 % modify it under the terms of the GNU General Public License\r
13 % as published by the Free Software Foundation; either version 2\r
14 % of the License, or (at your option) any later version.\r
15 %\r
16 % This program is distributed in the hope that it will be useful,\r
17 % but WITHOUT ANY WARRANTY; without even the implied warranty of\r
18 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
19 % GNU General Public License for more details.\r
20 %\r
21 % You should have received a copy of the GNU General Public License\r
22 % along with this program; if not, write to the Free Software\r
23 % Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.\r
25 for j=1:length(expr);\r
26         expr{j}=char(expr{j});\r
27 end\r