-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain_settings.m
More file actions
65 lines (63 loc) · 1.55 KB
/
main_settings.m
File metadata and controls
65 lines (63 loc) · 1.55 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
classdef main_settings
properties
plot0
plot1
plot2
plot3
plot4
plot5
param
editmodel
units
pacemaker
tutorial
end
methods
function obj = main_settings()
obj.plot0 = 'AEGM';
obj.plot1 = 'VEGM';
obj.plot2 = 'Aget/Vget';
obj.plot3 = 'AP/VP';
obj.plot4 = 'AS/VS';
obj.plot5 = 'AR/VR';
obj.param = 'Normal';
obj.editmodel = false;
obj.units = 1;
obj.pacemaker= 1;
obj.tutorial = false;
end
function obj = set.plot0(obj,val)
obj.plot0 = val;
end
function obj = set.plot1(obj,val)
obj.plot1 = val;
end
function obj = set.plot2(obj,val)
obj.plot2 = val;
end
function obj = set.plot3(obj,val)
obj.plot3 = val;
end
function obj = set.plot4(obj,val)
obj.plot4 = val;
end
function obj = set.plot5(obj,val)
obj.plot5 = val;
end
function obj = set.param(obj,val)
obj.param = val;
end
function obj = set.units(obj,val)
obj.units = val;
end
function obj = set.editmodel(obj,val)
obj.editmodel = val;
end
function obj = set.pacemaker(obj,val)
obj.pacemaker = val;
end
function obj = set.tutorial(obj,val)
obj.tutorial = val;
end
end
end