repo.or.cz
/
wrf-fire-matlab.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
comments
[wrf-fire-matlab.git]
/
detection
/
fig.m
blob
2afdec49834a9bab81b5f0e8729188718dac3086
1
function fig
2
f=gcf;
3
set([gca],'FontSize', 8);
4
i=f.Number
5
file=['plot_like_new',num2str(i)]
6
f.PaperUnits = 'inches';
7
mult=0.95;
8
f.PaperSize = mult*[3 2];
9
f.PaperPosition = mult*[0 0 3 2];
10
savefig(i,file)
11
% print('-deps',file)
12
% print('-dpng',file)
13
print('-dpdf',file)