Overview
| Comment: | Prints more useful name. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/numerical-algebraic-solution | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
528fe3d379c7a998a26b5ed2496fc2f1 |
| User & Date: | geraint@users.sourceforge.net on 2001-06-26 00:57:21.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2001-06-26
| ||
| 01:01:28 | Makes input and state names available for input rep. check-in: f660139eb3 user: geraint@users.sourceforge.net tags: origin/numerical-algebraic-solution, trunk | |
| 00:57:21 | Prints more useful name. check-in: 528fe3d379 user: geraint@users.sourceforge.net tags: origin/numerical-algebraic-solution, trunk | |
| 00:55:48 | Writes algebraic equation Jacobian _aej.r (not used yet). check-in: f057909af3 user: geraint@users.sourceforge.net tags: origin/numerical-algebraic-solution, trunk | |
Changes
Modified mttroot/mtt/bin/trans/dat2sdat
from [8c6cd455bb]
to [a1524eaa65].
| ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 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 | + + + - + |
# Copyright (c) P.J.Gawthrop, 1997, 1999
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.1 2000/12/28 12:26:34 peterg
## Put under RCS
##
## Revision 1.1 1999/03/28 21:29:40 peterg
## Initial revision
##
###############################################################
if [ "$2" = "odes" ]; then
which="state"
else
which="output"
fi
awk '
BEGIN{
printf("Time");
}
{
if ($1==which)
|