Overview
Comment: | Uses 1st io of mimo to create siso |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
f689c40757fcc28c3bcd619fc88d6330 |
User & Date: | gawthrop@users.sourceforge.net on 2000-09-11 10:53:54 |
Other Links: | branch diff | manifest | tags |
Context
2000-09-11
| ||
10:56:29 | Now choosed 1st i/o of mimio system check-in: c3ec5dc248 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:53:54 | Uses 1st io of mimo to create siso check-in: f689c40757 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:22:02 | Checks for absent port list in subsystem abg file. check-in: e215251f0b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/sm2smo_r from [6392ec53de] to [a2212317a1].
︙ | ︙ | |||
10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.1 1998/01/22 13:16:43 peterg ## Initial revision ## ############################################################### # Inform user | > > > > > > > > > > > > > > > > > > | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | # Copyright (c) P.J.Gawthrop 1998 ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.2 1998/01/22 13:25:22 peterg ## Added END;; to output file. ## ## Revision 1.1 1998/01/22 13:16:43 peterg ## Initial revision ## ############################################################### Nu=`mtt_getsize $1 u` Ny=`mtt_getsize $1 y` if [ "$Nu" = "1" ]; then if [ "$Ny" = "1" ]; then blurb=' for this siso system' else blurb=" using first output of $Ny" fi else if [ "$Ny" = "1" ]; then blurb=" using first input of $Nu" else blurb=" using first input of $Nu and using first output of $Ny" fi fi # Inform user echo Creating $1_smo.r $blurb # Remove the old log file rm -f sm2smo_r.log # Use reduce to accomplish the transformation reduce >sm2smo_r.log << EOF |
︙ | ︙ | |||
83 84 85 86 87 88 89 | MTT_Matrix_n := MTTNx$ MTT_Matrix_m := MTTNx$ Reduce_Matrix()$ MTT_Matrix := MTTB_o$ MTT_Matrix_name := "MTTB_o"$ MTT_Matrix_n := MTTNx$ | | | | | | 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | MTT_Matrix_n := MTTNx$ MTT_Matrix_m := MTTNx$ Reduce_Matrix()$ MTT_Matrix := MTTB_o$ MTT_Matrix_name := "MTTB_o"$ MTT_Matrix_n := MTTNx$ MTT_Matrix_m := 1$ Reduce_Matrix()$ MTT_Matrix := MTTC_o$ MTT_Matrix_name := "MTTC_o"$ MTT_Matrix_n := 1$ MTT_Matrix_m := MTTNx$ Reduce_Matrix()$ MTT_Matrix := MTTD_o$ MTT_Matrix_name := "MTTD_o"$ MTT_Matrix_n := 1$ MTT_Matrix_m := 1$ Reduce_Matrix()$ write "% -Observability matrix"; MTT_Matrix := MTTObs$ MTT_Matrix_name := "MTTObs"$ MTT_Matrix_n := MTTNx$ MTT_Matrix_m := MTTNx$ |
︙ | ︙ |