Overview
Comment: | Moved fflush(structure_file) out of loop. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a441d7b49b706792672bc00dce5c7146 |
User & Date: | geraint@users.sourceforge.net on 2001-11-11 18:12:30 |
Other Links: | branch diff | manifest | tags |
Context
2001-11-15
| ||
02:56:18 |
Added DASSL as an option for solution of algebraic equations (-ae dassl). Requires octave-2.1.35. check-in: c4c37283ad user: geraint@users.sourceforge.net tags: origin/master, trunk | |
2001-11-11
| ||
18:12:30 | Moved fflush(structure_file) out of loop. check-in: a441d7b49b user: geraint@users.sourceforge.net tags: origin/master, trunk | |
08:32:00 | fflush (structure_file). check-in: 1b3954381d user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/m/cbg2ese.m from [f4c341bfe9] to [31625fa4e2].
︙ | ︙ | |||
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | ## Structure matrix [states,nonstates,inputs,outputs,zero_outputs] ## ############################################################### ## ## Version control history ## ############################################################### ## ## $Id$ ## ## $Log$ ## ## Revision 1.42 2001/04/23 16:23:30 gawthrop ## ## Now stips ; from bottlom level argument list - allows aliasing of ## ## parts of a,b,c (eg a,b by using a,b;c ## ## ## ## Revision 1.41 2001/04/15 21:15:41 geraint ## ## Added interface definition rep: _ICD.(txt|c|cc|m). ## ## | > > > | 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.43 2001/11/11 08:32:00 geraint ## ## fflush (structure_file). ## ## ## ## Revision 1.42 2001/04/23 16:23:30 gawthrop ## ## Now stips ; from bottlom level argument list - allows aliasing of ## ## parts of a,b,c (eg a,b by using a,b;c ## ## ## ## Revision 1.41 2001/04/15 21:15:41 geraint ## ## Added interface definition rep: _ICD.(txt|c|cc|m). ## ## |
︙ | ︙ | |||
501 502 503 504 505 506 507 | value = structure(which_index); value_change=value-old_structure(which_index); for k=1:value_change fprintf(structure_file, ... "%s\t%i\t%s\t%s_%s\t%i\n", ... structure_name(which_index,:), value-k+1, ... comp_name, full_name_repetition, comp_name, repetition); | < > | 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 | value = structure(which_index); value_change=value-old_structure(which_index); for k=1:value_change fprintf(structure_file, ... "%s\t%i\t%s\t%s_%s\t%i\n", ... structure_name(which_index,:), value-k+1, ... comp_name, full_name_repetition, comp_name, repetition); endfor; endfor; endif; endif endfor fflush (structure_file); ## component interface definition if struct_contains(CBG,"icd") if struct_contains(CBG.icd,comp_name) if AliasingArguments subsystem.icd = alias_args(eval(["CBG.icd.",comp_name]),CBG.alias,";",message,infofilenum,full_name); endif |
︙ | ︙ |