Initial commit
[pftoolbox.git] / models / @dgnl / private / joinvars.m
blob977b2b038de56cbd3712c562ca1a105a0e7e2ad6
1 function vars=joinvars(v1,v2)\r
2 % No documentation available\r
3 \r
4 % Toolbox for nonlinear filtering.\r
5 % Copyright (C) 2005  Jakob Rosén <jakob.rosen@gmail.com>\r
6 %\r
7 % This program is free software; you can redistribute it and/or\r
8 % modify it under the terms of the GNU General Public License\r
9 % as published by the Free Software Foundation; either version 2\r
10 % of the License, or (at your option) any later version.\r
11 %\r
12 % This program is distributed in the hope that it will be useful,\r
13 % but WITHOUT ANY WARRANTY; without even the implied warranty of\r
14 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
15 % GNU General Public License for more details.\r
16 %\r
17 % You should have received a copy of the GNU General Public License\r
18 % along with this program; if not, write to the Free Software\r
19 % Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.\r
21 c=[];\r
22 if ~isempty(v1)\r
23         max1=v1{end};\r
24         c=max1(1);\r
25         max1=str2num(max1(2:end));\r
26 else\r
27         max1=0;\r
28 end;\r
30 if ~isempty(v2)\r
31         max2=v2{end};\r
32         c=max2(1);\r
33         max2=str2num(max2(2:end));\r
34 else\r
35         max2=0;\r
36 end;\r
38 if ~isempty(c)\r
39         vars=generatevars(c,max(max1,max2));\r
40 else\r
41         vars={};\r
42 end