-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstartup.m
30 lines (24 loc) · 805 Bytes
/
startup.m
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
disp 'executing startup fd2d-adjoint/startup.m'
%- default figure position (doffer: on matlab monitor)
% set(0,'defaultfigureposition',[40 60 560 400])
% plekje = [ 1100 490 570 480];
set(0, 'defaultfigureposition',[1100 490 570 480]);
%- somethign to do with printing
set(0,'DefaultFigurePaperPositionMode','auto')
% figure title font
if strcmp(version('-release'),'2014b')
set(0,'defaultaxestitlefontweight','normal');
end
%- adding all the fd2d-adjoint paths to path
path(path,'./code');
path(path,'./code/propagation');
path(path,'./input');
path(path,'./output');
path(path,'./tools');
path(path,'./mtit')
path(path,'./quivers/')
path(path,'./externaltools');
path(path,'./InvTlbx_callback_fn');
path(path,'./InvTlbx');
%- if error, go to debug mode
dbstop if error