Overview
| Comment: | Increased size of structure vector by on to include unknown_inputs as 6th element |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
85fe59450ade2f3618de5167893c5c04 |
| User & Date: | gawthrop@users.sourceforge.net on 1997-12-16 18:05:03.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1997-12-16
| ||
| 18:24:33 | Added unknown_input to structure list check-in: 6c6a9eaf75 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 18:05:03 |
Increased size of structure vector by on to include unknown_inputs as 6th element check-in: 85fe59450a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1997-12-11
| ||
| 10:59:50 | This is version 2.6 check-in: c4780c0ee8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cbg2ese_m2r
from [b1398a61d6]
to [7fbfc9f7b8].
| ︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ # Revision 1.9 1996/12/07 18:21:25 peterg # Now uses fopen + file number # ## Revision 1.8 1996/12/05 10:05:28 peterg ## Removed the Octave switch: empty_list_elements_ok = 1; ## This is now in .octaverc ## | > > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ ## Revision 1.10 1997/04/15 09:18:26 peterg ## Added structure file ## # Revision 1.9 1996/12/07 18:21:25 peterg # Now uses fopen + file number # ## Revision 1.8 1996/12/05 10:05:28 peterg ## Removed the Octave switch: empty_list_elements_ok = 1; ## This is now in .octaverc ## |
| ︙ | ︙ | |||
77 78 79 80 81 82 83 | system_args = ''; full_name = ''; full_name_repetition = ''; % Structure matrix [states,nonstates,inputs,outputs,zero_outputs] | | | 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
system_args = '';
full_name = '';
full_name_repetition = '';
% Structure matrix [states,nonstates,inputs,outputs,zero_outputs]
structure = zeros(1,6);
structure = cbg2ese(system_name, system_type, system_cr, ...
system_args, full_name, full_name_repetition, ...
1, structure, structurefilenum, infofilenum);
makedef(structure,deffilenum);
EOF
|
| ︙ | ︙ |