ADDED mttroot/mtt/bin/trans/gdat2view Index: mttroot/mtt/bin/trans/gdat2view ================================================================== --- /dev/null +++ mttroot/mtt/bin/trans/gdat2view @@ -0,0 +1,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