Overview
Comment: | Default to empty matix in numpar.m -- avoids probs for parameter-free systems |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
6a4ba9756558f6f368cab36d53a00bfa |
User & Date: | gawthrop@users.sourceforge.net on 2000-09-30 13:53:07 |
Other Links: | branch diff | manifest | tags |
Context
2000-09-30
| ||
14:10:06 | Zap lines containing "Remove in mtt_m2p" check-in: 8b9e2ca1ac user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
13:53:07 | Default to empty matix in numpar.m -- avoids probs for parameter-free systems check-in: 6a4ba97565 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-09-27
| ||
16:15:55 | Now sh (as opposed to bash) compatible - fixed dat22dat again check-in: 7be2b8967b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_txt2m from [20a33a68be] to [b9da97b04a].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% Version control history # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% $Id$ # %% $Log$ # %% Revision 1.6 2000/05/19 14:59:03 peterg # %% MTT --> mtt in fun output # %% # %% Revision 1.5 2000/05/19 14:05:10 peterg # %% Zero parameters in the numpar.m file # %% # %% Revision 1.4 2000/05/18 12:05:42 peterg | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% Version control history # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% $Id$ # %% $Log$ # %% Revision 1.7 2000/05/19 17:46:17 peterg # %% Give argument to state # %% # %% Revision 1.6 2000/05/19 14:59:03 peterg # %% MTT --> mtt in fun output # %% # %% Revision 1.5 2000/05/19 14:05:10 peterg # %% Zero parameters in the numpar.m file # %% # %% Revision 1.4 2000/05/18 12:05:42 peterg |
︙ | ︙ | |||
188 189 190 191 192 193 194 195 196 | -e 's/mttmtt/mtt/g' \ -e 's/#/%/g' \ >> $1_$2.m if [ "$2" = "numpar" ]; then echo "## Set up the parameter vector" >> $1_numpar.m; sympar2par_txt2m $1 set >> $1_numpar.m; fi | > < | 191 192 193 194 195 196 197 198 199 200 | -e 's/mttmtt/mtt/g' \ -e 's/#/%/g' \ >> $1_$2.m if [ "$2" = "numpar" ]; then echo "## Set up the parameter vector" >> $1_numpar.m; echo "mttpar = []; # Default to empty matrix (Remove in mtt_m2p)" >> $1_numpar.m; sympar2par_txt2m $1 set >> $1_numpar.m; fi |