Overview
| Comment: | Octave continuation character changed to ellipsis |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
293a80c42a6c96609cae7618f8233b59 |
| User & Date: | geraint@users.sourceforge.net on 2014-08-02 16:48:56.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2014-08-02
| ||
| 17:04:46 | Changed continuation character in m file header to ellipsis check-in: ffc8f255c0 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 16:48:56 | Octave continuation character changed to ellipsis check-in: 293a80c42a user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 16:36:14 | Replaced continuation character in lib m files, except PPP and Control check-in: fa2f8429aa user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/ibg2abg_m
from [9b7bce455b]
to [6f2e346232].
| ︙ | ︙ | |||
39 40 41 42 43 44 45 |
infofile = fopen('mtt_info.txt', 'wt');
errorfile = fopen('mtt_error.txt', 'wt');
## Interpret data from the ibg representation
ibonds = $1_ibg;
bonds = ibonds.bonds;
| | | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
infofile = fopen('mtt_info.txt', 'wt');
errorfile = fopen('mtt_error.txt', 'wt');
## Interpret data from the ibg representation
ibonds = $1_ibg;
bonds = ibonds.bonds;
[bonds,components,n_vector_bonds] = ibg2abg(name,bonds, ...
infofile,errorfile)
## Write the acausal bond graph m-file
write_abg(name,bonds,components,n_vector_bonds);
EOF
# Set the units for the abg file
|
| ︙ | ︙ |