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: |
da5654265f6b67dc4fd5611942acaf85 |
User & Date: | gawthrop@users.sourceforge.net on 2000-11-03 10:43:10 |
Other Links: | branch diff | manifest | tags |
Context
2000-11-03
| ||
14:20:00 | Now used within mtt_make_sympars check-in: 4ee7bc78cb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
10:43:10 | Initial revision check-in: da5654265f user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2000-11-02
| ||
18:53:46 | Added NOPAR words to unwanted list. check-in: c6d6469132 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/m/figfig.m version [0aee9794f8].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | function psfig(filename) ## Usage: psfig(filename) ## Puts figure into ps file ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.3 2000/10/09 14:41:47 peterg ## Put back color ## ## Revision 1.2 2000/10/09 09:53:14 peterg ## Changed font size ## ## Revision 1.1 1999/11/30 23:26:21 peterg ## Initial revision ## ## 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 eval(sprintf("gset output \"%s\" ",filename)); gset linestyle 1 lw 4 # Thicker lines gset linestyle 2 lw 4 # Thicker lines gset linestyle 3 lw 4 # Thicker lines gset linestyle 4 lw 4 # Thicker lines gset linestyle 5 lw 4 # Thicker lines gset term postscript eps color 30 replot; gset term x11 gset output replot; endfunction |