Overview
Comment: | Now does up to 10 ports |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
eaecddc91b8450e2fbdb56b1030076b8 |
User & Date: | gawthrop@users.sourceforge.net on 1999-03-12 01:12:09 |
Other Links: | branch diff | manifest | tags |
Context
1999-03-12
| ||
04:03:09 | Single argument - the value of the flow check-in: 86123578d3 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
01:12:09 | Now does up to 10 ports check-in: eaecddc91b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
00:58:06 |
Now gets portlist from the _abg.m file NOT the _rbg.m file - this allows expansion of vector SS ports. check-in: 1b19943eba user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/comp/simple/SS_alias.m from [ec84d0544a] to [532fa03c37].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | function alias = SS_alias # Port aliases for SS ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1998/07/02 14:37:42 peterg ## Initial revision ## ############################################################### alias.in = "1"; alias.out = "1"; | > > > | | | < < | < < | < < | < < | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | function alias = SS_alias # Port aliases for SS ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 1998/07/28 19:08:22 peterg ## Some vector aliases added. ## ## Revision 1.1 1998/07/02 14:37:42 peterg ## Initial revision ## ############################################################### alias.in = "1"; alias.out = "1"; MAX = 10; value = "1"; for i=1:MAX eval(sprintf("alias.in%i = \"%s\";", i, value)); eval(sprintf("alias.out%i = \"%s\";", i, value)); value = sprintf("%s,%i",value,i+1); endfor; endfunction |