Overview
| Comment: | Use assignment LHS to gather tmp variable names. Prevents collection of long expressions, eg: tmp34*(tmp75 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
eca5067ba8dd85201a1ed35a5af044bb |
| User & Date: | geraint@users.sourceforge.net on 2001-02-17 03:48:17.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2001-02-18
| ||
| 00:08:21 | Simplified. check-in: e472b719de user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2001-02-17
| ||
| 03:48:17 |
Use assignment LHS to gather tmp variable names. Prevents collection of long expressions, eg: tmp34*(tmp75 check-in: eca5067ba8 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
|
2001-02-14
| ||
| 06:06:34 | Removed octave_value_list wrappers from standalone.exe - speed improvements check-in: 8b27383a88 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/mtt_header
from [0b46b8b3ac]
to [4ed073be0b].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.26 2001/02/05 08:50:58 geraint ## Octave 2.1.x compatability. ## ## Revision 1.28 2001/01/17 21:16:15 geraint ## uncomment parameter assignments in .m reps ## ## Revision 1.27 2001/01/14 23:51:26 geraint | > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Copyright (C) 2000 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.27 2001/02/14 06:06:34 geraint ## Removed octave_value_list wrappers from standalone.exe - speed improvements ## ## Revision 1.26 2001/02/05 08:50:58 geraint ## Octave 2.1.x compatability. ## ## Revision 1.28 2001/01/17 21:16:15 geraint ## uncomment parameter assignments in .m reps ## ## Revision 1.27 2001/01/14 23:51:26 geraint |
| ︙ | ︙ | |||
346 347 348 349 350 351 352 |
declare_dummies()
{
# Get the dummies
dummies="mtt_tmp"
rm -f mtt_dummies
for dummy in $dummies; do
| | | 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 |
declare_dummies()
{
# Get the dummies
dummies="mtt_tmp"
rm -f mtt_dummies
for dummy in $dummies; do
grep "${dummy}[0-9]*[ \t\n]*=" < ${fun_name}.m |\
awk '{
if (match($1,dummy)==1)
print $1
}' dummy=$dummy >> mtt_dummies
done
dummy_list=`sort -u mtt_dummies`
|
| ︙ | ︙ |