Overview
Comment: | input rep: Removed input name mapping, left state name mapping. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/numerical-algebraic-solution | trunk |
Files: | files | file ages | folders |
SHA3-256: |
aba0a88b32f13f356571ed1629db2444 |
User & Date: | geraint@users.sourceforge.net on 2001-07-09 00:24:58 |
Other Links: | branch diff | manifest | tags |
Context
2001-07-13
| ||
03:07:59 | Added dtors to Solvers check-in: 9b9a6be2b1 user: geraint@users.sourceforge.net tags: origin/numerical-algebraic-solution, trunk | |
2001-07-09
| ||
00:24:58 | input rep: Removed input name mapping, left state name mapping. check-in: aba0a88b32 user: geraint@users.sourceforge.net tags: origin/numerical-algebraic-solution, trunk | |
2001-07-02
| ||
00:34:56 | gcc-3.0 compatibility. check-in: dd41e6affd user: geraint@users.sourceforge.net tags: origin/numerical-algebraic-solution, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_txt2m from [27c28b8293] to [0da32b8475].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% Version control history # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% $Id$ # %% $Log$ # %% Revision 1.13 2001/02/05 03:33:18 geraint # %% Convert user-defined txt to lower-case in translation. # %% Required by logic.m (Octave is case sensitive). # %% # %% Revision 1.12 2000/11/08 11:20:49 peterg # %% removed the empty matrix stuff # %% | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% Version control history # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% # %% $Id$ # %% $Log$ # %% Revision 1.13.4.1 2001/06/26 01:01:28 geraint # %% Makes input and state names available for input rep. # %% # %% Revision 1.13 2001/02/05 03:33:18 geraint # %% Convert user-defined txt to lower-case in translation. # %% Required by logic.m (Octave is case sensitive). # %% # %% Revision 1.12 2000/11/08 11:20:49 peterg # %% removed the empty matrix stuff # %% |
︙ | ︙ | |||
160 161 162 163 164 165 166 | #sympar2global_txt2m $1 >> $outfile ;; esac # Generate the header mtt_header $system $representation m > $outfile | | | > > > > > > > | 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | #sympar2global_txt2m $1 >> $outfile ;; esac # Generate the header mtt_header $system $representation m > $outfile ## Special for logic rep if [ "$representation" = "logic" ]; then echo >> $outfile echo "## Inputs" >> $outfile mtt_name2array $system input >> $outfile # Set up input by name echo >> $outfile echo "## States" >>$outfile mtt_name2array $system state >> $outfile # Set up state by name fi ## Special for input rep if [ "$representation" = "input" ]; then echo >> $outfile echo "## States" >>$outfile mtt_name2array $system state >> $outfile # Set up state by name fi # Write out the code from the txt file echo >> $outfile echo "## User defined code from $1_$2.txt" >> $outfile |
︙ | ︙ |