7017
|
1 ## Copyright (C) 1996, 1998, 2004, 2005, 2007 |
|
2 ## Auburn University. All rights reserved. |
6945
|
3 ## |
|
4 ## This file is part of Octave. |
|
5 ## |
|
6 ## Octave is free software; you can redistribute it and/or modify it |
7016
|
7 ## under the terms of the GNU General Public License as published by |
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
6945
|
10 ## |
7016
|
11 ## Octave is distributed in the hope that it will be useful, but |
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
14 ## General Public License for more details. |
6945
|
15 ## |
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
4779
|
19 |
6945
|
20 ## Undocumented internal function. |
|
21 |
|
22 function c = __sysconcat__ (a, b) |
|
23 |
|
24 ## c = __sysconcat__ (a, b) |
|
25 ## cell array replacement for append, used by control systems toolbox |
|
26 |
|
27 if (ischar (a)) |
4779
|
28 a = {a}; |
|
29 endif |
6945
|
30 if (ischar (b)) |
4779
|
31 b = {b}; |
|
32 endif |
|
33 |
6945
|
34 if (! (is_signal_list (a) && is_signal_list (b))) |
4779
|
35 error("need cell arrays of strings"); |
|
36 endif |
|
37 |
|
38 c = a; |
6945
|
39 la = length (a); |
|
40 for ii = 1:length (b) |
4779
|
41 c{la+ii} = b{ii}; |
|
42 endfor |
|
43 |
|
44 endfunction |