Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
427dc1df3566208b947491b7b0b83893 |
User & Date: | gawthrop@users.sourceforge.net on 1996-08-15 08:50:20 |
Other Links: | branch diff | manifest | tags |
Context
1996-08-15
| ||
09:37:58 | Parameters in title. check-in: 6aba71bfa0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:50:20 | Initial revision check-in: 427dc1df35 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
08:34:08 | Added step gain (u0) and initial condition (x0) check-in: f13510619d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/gdat2view version [c56db8a8d8].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #! /bin/sh ###################################### ##### Model Transformation Tools ##### ###################################### # Bourne shell script: gdat2view # Converts a data file in gplot format to view # Copyright (c) P.J.Gawthrop, 1996. ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ############################################################### echo Creating view of $1 gnuplot << EOF set grid set title "$1. Generated by MTT on $(date)" plot '$1.gdat' with lines pause 100000 EOF |