6945
|
1 ## Copyright (C) 1996, 1998 Auburn University. All rights reserved. |
|
2 ## |
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by the |
|
7 ## Free Software Foundation; either version 2, or (at your option) any |
|
8 ## later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but WITHOUT |
|
11 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 ## for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301 USA. |
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 |