Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
5865c2e6c9d52c329cf58bc5e513d161 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-19 14:48:48 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-19
| ||
15:14:51 | Initial revision check-in: 3ca36505ad user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:48:48 | Initial revision check-in: 5865c2e6c9 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
14:35:51 | Prettyfied z dot. check-in: 48cf477370 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/m/csm2sm.m version [82261a8899].
> > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | function [A,B,C,D] = csm2sm(A,B,C,D,E); % [A,B,C,D] = csm2sm(A,B,C,D,E); % Converts constrained-state matrices to state matrices. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% Version control history % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % %% $Id$ % %% $Log$ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% A = E\A; B = E\B; |