Mercurial > hg > octave-lyh
comparison scripts/control/system/sysmult.m @ 5016:bdbee5282954
[project @ 2004-09-22 02:50:35 by jwe]
author | jwe |
---|---|
date | Wed, 22 Sep 2004 02:50:36 +0000 |
parents | b8105302cfe8 |
children | 4c8a2e4e0717 |
comparison
equal
deleted
inserted
replaced
5015:6d481b6e349e | 5016:bdbee5282954 |
---|---|
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} {} sysmult (@var{asys}, @var{bsys}) | 20 ## @deftypefn {Function File} {@var{sys} =} sysmult (@var{Asys}, @var{Bsys}) |
21 ## Compute @math{sys = Asys*Bsys} (series connection): | 21 ## Compute @math{sys = Asys*Bsys} (series connection): |
22 ## @example | 22 ## @example |
23 ## @group | 23 ## @group |
24 ## u ---------- ---------- | 24 ## u ---------- ---------- |
25 ## --->| bsys |---->| asys |---> | 25 ## --->| Bsys |---->| Asys |---> |
26 ## ---------- ---------- | 26 ## ---------- ---------- |
27 ## @end group | 27 ## @end group |
28 ## @end example | 28 ## @end example |
29 ## A warning occurs if there is direct feed-through | 29 ## A warning occurs if there is direct feed-through from an input |
30 ## from an input of Bsys or a continuous state of @var{bsys} through a | 30 ## or a continuous state of @var{Bsys}, through a discrete output |
31 ## discrete output of Bsys to a continuous state or output in @var{asys} | 31 ## of @var{Bsys}, to a continuous state or output in @var{Asys} |
32 ## (system data structure does not recognize discrete inputs). | 32 ## (system data structure does not recognize discrete inputs). |
33 ## @end deftypefn | 33 ## @end deftypefn |
34 | 34 |
35 ## Author: John Ingram <ingraje@eng.auburn.edu> | 35 ## Author: John Ingram <ingraje@eng.auburn.edu> |
36 ## Created: July 1996 | 36 ## Created: July 1996 |