forked from BIVectors/BRAVEHEART
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeh_sensitivity.m
More file actions
287 lines (233 loc) · 11.4 KB
/
geh_sensitivity.m
File metadata and controls
287 lines (233 loc) · 11.4 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis
% geh_sensitivity.m -- Performs sensitivity analysis on given ECG
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks
%
% Source code/executables: https://github.com/BIVectors/BRAVEHEART
% Contact: [email protected]
%
% BRAVEHEART is free software: you can redistribute it and/or modify it under the terms of the GNU
% General Public License as published by the Free Software Foundation, either version 3 of the License,
% or (at your option) any later version.
%
% BRAVEHEART is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
% without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
% See the GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License along with this program.
% If not, see <https://www.gnu.org/licenses/>.
%
% This software is for research purposes only and is not intended to diagnose or treat any disease.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function geh_sensitivity(filename, median_vcg, medianbeat, aps, step)
% Save original medianbeat
medianbeat_orig = medianbeat;
% Start looping through the fiducial points and calculating VCG_Calc
% Start with shifting Qbeg (Q)
index_q = 0; % Index for organizing into spreadsheet rows later
for i = -step:step
index_q = index_q + 1;
medianbeat = medianbeat_orig.shift_q(i);
note = strcat('shift Q', {' '}, num2str(i), {' : '}, num2str(medianbeat.beatmatrix())); % label
geh_q(index_q,:) = [note, num2cell(VCG_Calc(median_vcg, medianbeat, aps).values())];
geh_q_num(index_q,:) = VCG_Calc(median_vcg, medianbeat, aps).values();
geh_q_class(index_q,:) = VCG_Calc(median_vcg, medianbeat, aps);
if i == 0
geh_q_class_init = VCG_Calc(median_vcg, medianbeat, aps);
geh_q_class_init_num = VCG_Calc(median_vcg, medianbeat, aps).values();
end
end
% have to catch errors due to some values being text
for p = 1:size(geh_q_num,2)
try
geh_mean_q(p) = mean(geh_q_num(:,p));
geh_std_q(p) = std(geh_q_num(:,p));
geh_median_q(p) = median(geh_q_num(:,p));
geh_iqr_q(p) = iqr(geh_q_num(:,p));
temp = abs(geh_q_num(:,p) - geh_q_class_init_num(p));
geh_maxchange_q(p) = max(temp);
geh_maxchange_percent_q(p) = abs(100*(geh_maxchange_q(p)/geh_q_class_init_num(p)));
catch
geh_mean_q(p) = NaN;
geh_std_q(p) = NaN;
geh_median_q(p) = NaN;
geh_iqr_q(p) = NaN;
geh_maxchange_q(p) = NaN;
geh_maxchange_percent_q(p) = NaN;
end
end
% Q onset detector
% xq_lt_percent = 100* (max(abs([geh_q_class(1:step).sai_x] - geh_q_class_init.sai_x)))/geh_q_class_init.sai_x;
% yq_lt_percent = 100* (max(abs([geh_q_class(1:step).sai_y] - geh_q_class_init.sai_y)))/geh_q_class_init.sai_y;
% zq_lt_percent = 100* (max(abs([geh_q_class(1:step).sai_z] - geh_q_class_init.sai_z)))/geh_q_class_init.sai_z;
%vmq_lt_percent = 100* (max(abs([geh_q_class(1:step).sai_vm] - geh_q_class_init.sai_vm)))/geh_q_class_init.sai_vm;
% xq_rt_percent = 100* (max(abs([geh_q_class(step+2:end).sai_x] - geh_q_class_init.sai_x)))/geh_q_class_init.sai_x;
% yq_rt_percent = 100* (max(abs([geh_q_class(step+2:end).sai_y] - geh_q_class_init.sai_y)))/geh_q_class_init.sai_y;
% zq_rt_percent = 100* (max(abs([geh_q_class(step+2:end).sai_z] - geh_q_class_init.sai_z)))/geh_q_class_init.sai_z;
%vmq_rt_percent = 100* (max(abs([geh_q_class(step+2:end).sai_vm] - geh_q_class_init.sai_vm)))/geh_q_class_init.sai_vm;
% Qend (S)
index_s = 0;
for m = -step:step
index_s = index_s + 1;
medianbeat = medianbeat_orig.shift_s(m);
note = strcat('shift S', {' '}, num2str(m), {' : '}, num2str(medianbeat.beatmatrix())); % label
geh_s(index_s,:) = [note, num2cell(VCG_Calc(median_vcg, medianbeat, aps).values())];
geh_s_num(index_s,:) = VCG_Calc(median_vcg, medianbeat, aps).values();
geh_s_class(index_q,:) = VCG_Calc(median_vcg, medianbeat, aps);
if m == 0
geh_s_class_init = VCG_Calc(median_vcg, medianbeat, aps);
geh_s_class_init_num = VCG_Calc(median_vcg, medianbeat, aps).values();
end
end
% have to catch errors due to some values being text
for p = 1:size(geh_s_num,2)
try
geh_mean_s(p) = mean(geh_s_num(:,p));
geh_std_s(p) = std(geh_s_num(:,p));
geh_median_s(p) = median(geh_s_num(:,p));
geh_iqr_s(p) = iqr(geh_s_num(:,p));
temp = abs(geh_s_num(:,p) - geh_s_class_init_num(p));
geh_maxchange_s(p) = max(temp);
geh_maxchange_percent_s(p) = abs(100*(geh_maxchange_s(p)/geh_s_class_init_num(p)));
catch
geh_mean_s(p) = NaN;
geh_std_s(p) = NaN;
geh_median_s(p) = NaN;
geh_iqr_s(p) = NaN;
geh_maxchange_s(p) = NaN;
geh_maxchange_percent_s(p) = NaN;
end
end
% Tend
jt = 40/(1000/median_vcg.hz);
medianbeat_shift = medianbeat_orig.shift_tend(jt);
geh_t_class_shifted = VCG_Calc(median_vcg, medianbeat_shift, aps);
index_t = 0;
for k = -step:step
index_t = index_t + 1;
medianbeat = medianbeat_orig.shift_tend(k);
note = strcat('shift T', {' '}, num2str(k), {' : '}, num2str(medianbeat.beatmatrix())); % label
geh_t(index_t,:) = [note, num2cell(VCG_Calc(median_vcg, medianbeat, aps).values())];
geh_t_num(index_t,:) = VCG_Calc(median_vcg, medianbeat, aps).values();
geh_t_class(index_t,:) = VCG_Calc(median_vcg, medianbeat, aps);
if k == 0
geh_t_class_init = VCG_Calc(median_vcg, medianbeat, aps);
geh_t_class_init_num = VCG_Calc(median_vcg, medianbeat, aps).values();
end
end
% have to catch errors due to some values being text
for p = 1:size(geh_t_num,2)
try
geh_mean_t(p) = mean(geh_t_num(:,p));
geh_std_t(p) = std(geh_t_num(:,p));
geh_median_t(p) = median(geh_t_num(:,p));
geh_iqr_t(p) = iqr(geh_t_num(:,p));
temp = abs(geh_t_num(:,p) - geh_t_class_init_num(p));
geh_maxchange_t(p) = max(temp);
geh_maxchange_percent_t(p) = abs(100*(geh_maxchange_t(p)/geh_t_class_init_num(p)));
catch
geh_mean_t(p) = NaN;
geh_std_t(p) = NaN;
geh_median_t(p) = NaN;
geh_iqr_t(p) = NaN;
geh_maxchange_t(p) = NaN;
geh_maxchange_percent_t(p) = NaN;
end
end
% a1 = sqrt(geh_t_class_init.XT_area^2 + geh_t_class_init.YT_area^2 + geh_t_class_init.ZT_area^2);
% a2 = sqrt(geh_t_class_shifted.XT_area^2 + geh_t_class_shifted.YT_area^2 + geh_t_class_shifted.ZT_area^2);
% a1 = [geh_t_class_init.XT_area geh_t_class_init.YT_area geh_t_class_init.ZT_area];
% a2 = [geh_t_class_shifted.XT_area geh_t_class_shifted.YT_area geh_t_class_shifted.ZT_area];
% percent_t = max(abs(100*(a2-a1)./a1));
% Looking at individual X, Y, Z areas for T wave does not work because
% falls apart if the T waves are flat - get large percent changes. Will
% now look at change in VM T wave area with goal of testing if annotation
% of T end is ok.
% shift_left = medianbeat_orig.shift_tend(round(-20/(1000/median_vcg.hz)));
% shift_right = medianbeat_orig.shift_tend(round(20/(1000/median_vcg.hz)));
%
% t1 = trapz(median_vcg.VM(medianbeat_orig.S:medianbeat_orig.Tend));
% t2 = trapz(median_vcg.VM(shift_right.S:shift_right.Tend));
% t3 = trapz(median_vcg.VM(shift_left.S:shift_left.Tend));
% percent_t_right = max(abs(100*(t2-t1)./t1));
% percent_t_left = max(abs(100*(t3-t1)./t1));
% t_index = (percent_t_left - percent_t_right)/ percent_t_right;
% shift_left = medianbeat_orig.shift_q(round(-20/(1000/median_vcg.hz)));
% shift_right = medianbeat_orig.shift_q(round(20/(1000/median_vcg.hz)));
%
% q1 = trapz(median_vcg.VM(medianbeat_orig.Q:medianbeat_orig.S));
% q2 = trapz(median_vcg.VM(shift_right.Q:shift_right.S));
% q3 = trapz(median_vcg.VM(shift_left.Q:shift_left.S));
% percent_q_right = max(abs(100*(q2-q1)./q1));
% percent_q_left = max(abs(100*(q3-q1)./q1));
% q_index = (percent_q_right - percent_q_left)/ percent_q_left;
%
% xt_lt_percent = 100* (max(abs([geh_t_class(1:step).sai_x] - geh_t_class_init.sai_x)))/geh_t_class_init.sai_x;
% yt_lt_percent = 100* (max(abs([geh_t_class(1:step).sai_y] - geh_t_class_init.sai_y)))/geh_t_class_init.sai_y;
% zt_lt_percent = 100* (max(abs([geh_t_class(1:step).sai_z] - geh_t_class_init.sai_z)))/geh_t_class_init.sai_z;
% vmt_lt_percent = 100* (max(abs([geh_t_class(1:step).sai_vm] - geh_t_class_init.sai_vm)))/geh_t_class_init.sai_vm;
%
% vmt_left_percent = max([xt_lt_percent yt_lt_percent zt_lt_percent vmt_lt_percent])
%
% xt_rt_percent = 100* (max(abs([geh_t_class(step+2:end).sai_x] - geh_t_class_init.sai_x)))/geh_t_class_init.sai_x;
% yt_rt_percent = 100* (max(abs([geh_t_class(step+2:end).sai_y] - geh_t_class_init.sai_y)))/geh_t_class_init.sai_y;
% zt_rt_percent = 100* (max(abs([geh_t_class(step+2:end).sai_z] - geh_t_class_init.sai_z)))/geh_t_class_init.sai_z;
% vmt_rt_percent = 100* (max(abs([geh_t_class(step+2:end).sai_vm] - geh_t_class_init.sai_vm)))/geh_t_class_init.sai_vm;
% vmt_right_percent = max([xt_rt_percent yt_rt_percent zt_rt_percent vmt_rt_percent])
% max_t_right = max([xq_rt_percent yq_rt_percent zq_rt_percent])
% max_t_left = max([xq_lt_percent yq_lt_percent zq_lt_percent])
% Write all data to Excel
% Write header w/ variable names
g = VCG_Calc();
excel_header = [{'note'} properties(g)'];
% Matrix of std deviations
geh_stats_q = nan(5,size(geh_q_num,2));
geh_stats_s = nan(5,size(geh_s_num,2));
geh_stats_s = nan(5,size(geh_t_num,2));
% Blank line
blank_cell = {'.'};
blank = repmat(blank_cell,1,length(excel_header));
% Create stat matrices
geh_stats_q = [geh_mean_q; geh_std_q; nan(1,length(geh_mean_q)); geh_median_q; geh_iqr_q; nan(1,length(geh_mean_q)); geh_maxchange_q; geh_maxchange_percent_q];
geh_stats_s = [geh_mean_s; geh_std_s; nan(1,length(geh_mean_s)); geh_median_s; geh_iqr_s; nan(1,length(geh_mean_s)); geh_maxchange_s; geh_maxchange_percent_s];
geh_stats_t = [geh_mean_t; geh_std_t; nan(1,length(geh_mean_t)); geh_median_t; geh_iqr_t; nan(1,length(geh_mean_t)); geh_maxchange_t; geh_maxchange_percent_t];
% Get rid of NaNs for excel export
geh_stats_cell_q = num2cell(geh_stats_q);
geh_stats_cell_q(isnan(geh_stats_q)) ={'.'};
geh_stats_cell_s = num2cell(geh_stats_s);
geh_stats_cell_s(isnan(geh_stats_s)) ={'.'};
geh_stats_cell_t = num2cell(geh_stats_t);
geh_stats_cell_t(isnan(geh_stats_t)) ={'.'};
% Add mean and std col "headers" to the first column of geh_stats
col = [{'Mean'};{'Std Deviation'};{' '};{'Median'};{'IQR'};{' '};{'Max Change'};{'% Max Change'}];
geh_stats_cell_q = [col geh_stats_cell_q];
geh_stats_cell_s = [col geh_stats_cell_s];
geh_stats_cell_t = [col geh_stats_cell_t];
% Create matrix of all geh calculations - Q then S then Tend then blank then stats
full_data = [excel_header; geh_q; blank; geh_stats_cell_q; blank; blank;...
geh_s; blank; geh_stats_cell_s; blank; blank;...
geh_t; blank; geh_stats_cell_t];
% Write to excel as single write operation
if ~isempty(filename)
writecell(full_data, char(filename));
end
% Q onset detecetor broken at the moment
% q_bad_thresh = 4.5;
% if (q_index < q_bad_thresh)
% q_bad = 0;
% else
% q_bad = 0;
% end
% q_bad = 0;
%
%
% t_bad_thresh = 0.15;
%
% % Looking to see what happens to
% if (t_index < t_bad_thresh)
% t_bad = 1;
% else
% t_bad = 0;
% end
%display('Complete'); % completed write operation
end