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: |
b45036b3bd2068b5f4d0257cad0b7e8a |
User & Date: | gawthrop@users.sourceforge.net on 1999-11-30 23:26:21 |
Other Links: | branch diff | manifest | tags |
Context
1999-12-02
| ||
00:52:05 | Initial revision check-in: 91c0c80032 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1999-11-30
| ||
23:26:21 | Initial revision check-in: b45036b3bd user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
1999-11-29
| ||
06:49:26 | Upped number of mtt_tnn check-in: 79445044e4 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/m/psfig.m version [6bbed01590].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 29 30 31 32 33 | function psfig(filename) ## Usage: psfig(filename) ## Puts figure into ps file ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 1999/09/04 02:23:30 peterg ## Removed mv stuff - now uses gset on actual file ## ## Revision 1.2 1999/06/15 02:05:44 peterg ## Now adds a .ps if not there already ## ## Revision 1.1 1999/03/25 01:35:00 peterg ## Initial revision ## ############################################################### ## Add .ps if not there already if !index(filename,".") # Is there a . filename = sprintf("%s.ps",filename); endif gset term postscript eps eval(sprintf("gset output \"%s\" ",filename)); replot; gset term x11 gset output replot; endfunction |