Mercurial > hg > octave-nkf
comparison scripts/control/system/sysdup.m @ 3502:b5238ac1dca9
[project @ 2000-01-31 07:40:53 by jwe]
author | jwe |
---|---|
date | Mon, 31 Jan 2000 07:41:01 +0000 |
parents | 7923abdeb4e5 |
children | 22bd65326ec1 |
comparison
equal
deleted
inserted
replaced
3501:8b21bcbc1080 | 3502:b5238ac1dca9 |
---|---|
15 ## You should have received a copy of the GNU General Public License | 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 | 16 ## along with Octave; see the file COPYING. If not, write to the Free |
17 ## Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. | 17 ## Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. |
18 | 18 |
19 ## -*- texinfo -*- | 19 ## -*- texinfo -*- |
20 ## @deftypefn {Function File} {} sysdup (@var{Asys}, @var{out_idx}, @var{in_idx}) | 20 ## @deftypefn {Function File} {} sysdup (@var{asys}, @var{out_idx}, @var{in_idx}) |
21 ## Duplicate specified input/output connections of a system | 21 ## Duplicate specified input/output connections of a system |
22 ## | 22 ## |
23 ## @strong{Inputs} | 23 ## @strong{Inputs} |
24 ## @table @var | 24 ## @table @var |
25 ## @item Asys | 25 ## @item asys |
26 ## system data structure | 26 ## system data structure |
27 ## @item out_idx | 27 ## @item out_idx |
28 ## @itemx in_idx | 28 ## @itemx in_idx |
29 ## indices or names of desired signals (see @code{sigidx}). | 29 ## indices or names of desired signals (see @code{sigidx}). |
30 ## duplicates are made of @code{y(out_idx(ii))} and @code{u(in_idx(ii))}. | 30 ## duplicates are made of @code{y(out_idx(ii))} and @code{u(in_idx(ii))}. |
42 ## in @var{in_idx}, @var{out_idx}, respectively | 42 ## in @var{in_idx}, @var{out_idx}, respectively |
43 ## @example | 43 ## @example |
44 ## @group | 44 ## @group |
45 ## ____________________ | 45 ## ____________________ |
46 ## u1 ----->| |----> y1 | 46 ## u1 ----->| |----> y1 |
47 ## | Asys | | 47 ## | asys | |
48 ## u2 ------>| |----->y2 | 48 ## u2 ------>| |----->y2 |
49 ## (in_idx) -------------------| (out_idx) | 49 ## (in_idx) -------------------| (out_idx) |
50 ## @end group | 50 ## @end group |
51 ## @end example | 51 ## @end example |
52 ## @end deftypefn | 52 ## @end deftypefn |