Overview
Comment: | Now handles bicausal SS component - ie source-source or sensor-sensor |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
467b73fa304ba5f5303e0ef9f3dc1b3a |
User & Date: | gawthrop@users.sourceforge.net on 2005-03-21 11:09:47 |
Other Links: | branch diff | manifest | tags |
Context
2005-03-21
| ||
11:44:06 | Avoid error messages when no inputs or no outputs or no states check-in: e2561c665a user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
11:09:47 |
Now handles bicausal SS component - ie source-source or sensor-sensor check-in: 467b73fa30 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:34:47 | Tidied. check-in: 71ba696ebc user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/cbg2ese.m from [c96ae35fd7] to [855720c30a].
︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | + + + | ## Structure matrix [states,nonstates,inputs,outputs,zero_outputs] ## ############################################################### ## ## Version control history ## ############################################################### ## ## $Id$ ## ## $Log$ ## ## Revision 1.52 2004/09/12 22:27:27 geraint ## ## Appended 't' to fopen mode string to open in text mode. ## ## ## ## Revision 1.51 2003/05/16 11:16:28 gawthrop ## ## Fixed bug with multiports ## ## ## ## Revision 1.50 2003/05/08 18:47:50 gawthrop ## ## Fixed __ bug when using * representations ## ## ## ## Revision 1.49 2003/03/13 15:19:04 gawthrop |
︙ | |||
194 195 196 197 198 199 200 | 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 | - - + + | ## disp("cbg2ese"); ## system_name, system_type, full_name, repetition pc = "%"; sub_delim = "__"; # Subsystem delimiter |
︙ | |||
544 545 546 547 548 549 550 | 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 | - - - - - - - + + + + + + + + + + + + | structure_change = structure_change>zeros(size(structure_change)); if structure_changes>0 which_indices = getindex(structure_change,1); which_indices = which_indices(:,2)'; for which_index=which_indices value = structure(which_index); value_change=value-old_structure(which_index); |
︙ |