Overview
| Comment: | Zapped the declaration of subsystem connections - now in individual .def files |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ef56d6df46b594a569df16b1c388a304 |
| User & Date: | gawthrop@users.sourceforge.net on 2000-11-30 15:12:55.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2000-11-30
| ||
| 15:23:16 |
Taken out all subsystem stuff - now done in mtt using mtt_make_subsystems check-in: 7c9ccc6cd7 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 15:12:55 |
Zapped the declaration of subsystem connections - now in individual .def files check-in: ef56d6df46 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 15:07:28 | Sorted out mtt_getsize check-in: bba3f23763 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/cbg2ese_m2r
from [4e6f807ba3]
to [c0a65b5d9e].
| ︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 | ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ ## Revision 1.22 2000/11/12 17:18:30 peterg ## Changed ' to " ## ## Revision 1.21 2000/10/16 08:40:35 peterg ## Whoops! Must touch mtt_aliased ## ## Revision 1.20 2000/10/16 08:36:31 peterg | > > > | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | ############################################################### ## Version control history ############################################################### ## $Id$ ## ## $Log$ ## Revision 1.23 2000/11/30 15:07:28 peterg ## Sorted out mtt_getsize ## ## Revision 1.22 2000/11/12 17:18:30 peterg ## Changed ' to " ## ## Revision 1.21 2000/10/16 08:40:35 peterg ## Whoops! Must touch mtt_aliased ## ## Revision 1.20 2000/10/16 08:36:31 peterg |
| ︙ | ︙ | |||
202 203 204 205 206 207 208 |
echo Connecting $subsystem
# Ny=`mtt_getsize -internal ${subsystem}_1 y`
# Nu=`mtt_getsize -internal ${subsystem}_1 u`
# Nx=`mtt_getsize -internal ${subsystem}_1 u`
# echo Ny $Ny Nu $Nu Nx $Nx
| | | 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
echo Connecting $subsystem
# Ny=`mtt_getsize -internal ${subsystem}_1 y`
# Nu=`mtt_getsize -internal ${subsystem}_1 u`
# Nx=`mtt_getsize -internal ${subsystem}_1 u`
# echo Ny $Ny Nu $Nu Nx $Nx
# echo MATRIX "MTT_"$subsystem"_uc("$Nu",1);" >> $1_def.r
echo >> $1_ese.r
echo %Subsystem input connections for $subsystem >> $1_ese.r
octave -q <<EOF >> $1_ese.r
for i=1:$Nu
printf("MTT_%s_uc(%i,1) := %s_1_MTTu%i;\n", "$subsystem", i, "$subsystem", i);
endfor;
|
| ︙ | ︙ |