10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
## Monochrome=1 gives a monchrome plot
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.5 2001/05/10 19:08:35 gawthrop
## Cosmetic improvements
##
## Revision 1.4 2001/05/08 15:18:12 gawthrop
## Added trig and hyperbolic functions to argument exclusion list
##
## Revision 1.3 2001/04/10 12:54:50 gawthrop
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
## Monochrome=1 gives a monchrome plot
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.6 2001/05/24 07:44:36 gawthrop
## Minor updates ..
##
## Revision 1.5 2001/05/10 19:08:35 gawthrop
## Cosmetic improvements
##
## Revision 1.4 2001/05/08 15:18:12 gawthrop
## Added trig and hyperbolic functions to argument exclusion list
##
## Revision 1.3 2001/04/10 12:54:50 gawthrop
|
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
figfilename = sprintf("%s.fig",filename);
eval(sprintf("gset output \"%s\" ",figfilename));
if (monochrome==1)
gset term fig monochrome portrait fontsize 16 size 20 10 metric
else
gset term fig color portrait fontsize 16 size 20 10 metric
endif
replot;
gset term x11
gset output
replot;
if boxed # Add a box - makes a visible bounding box
fid = fopen(figfilename,"a+");
fprintf(fid,"2 4 0 2 31 7 50 0 -1 0.000 0 0 7 0 0 5\n");
fprintf(fid,"\t9675 5310 9675 270 225 270 225 5310 9675 5310\n");
fclose(fid);
endif
if nargin>1 # Do a ps file
psfilename = sprintf("%s.%s",filename,language);
convert = sprintf("fig2dev -L%s %s > %s", language, figfilename, psfilename);
system(convert);
endif
endfunction
|
|
|
|
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
figfilename = sprintf("%s.fig",filename);
eval(sprintf("gset output \"%s\" ",figfilename));
if (monochrome==1)
gset term fig monochrome portrait fontsize 16 size 20 10 metric thickness 3
else
gset term fig color portrait fontsize 16 size 20 10 metric thickness 3
endif
replot;
gset term x11
gset output
replot;
if boxed # Add a box - makes a visible bounding box
fid = fopen(figfilename,"a+");
fprintf(fid,"2 4 0 2 31 7 50 0 -1 0.000 0 0 7 0 0 5\n");
fprintf(fid,"\t9675 5310 9675 270 225 270 225 5310 9675 5310\n");
fclose(fid);
endif
if nargin>1 # Do a file in another langueage
psfilename = sprintf("%s.%s",filename,language);
convert = sprintf("fig2dev -L%s %s > %s", language, figfilename, psfilename);
system(convert);
endif
endfunction
|