-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See Changelog for v1.3.1. Added ability to read Norav .rtf and Megacare XML ECG files. Improved generic .csv format loading to allow for files with headers.
- Loading branch information
Showing
168 changed files
with
449 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% AbnormalVals.m -- Class for assigning values as normal or abnormal. | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% AnnoResult.m -- Utility class which stores the results of an annotation calculation and export it as a table | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
@@ -106,7 +106,7 @@ | |
obj.missing_lead = num2cell(missing_lead); | ||
|
||
% VERSION MANUALLY UPDATED HERE | ||
obj.version = {'1.3.0'}; | ||
obj.version = {'1.3.1'}; | ||
|
||
end | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% Annoparams.m -- Annoparams class for controlling BRAVEHEART function | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% Beat_Stats.m -- Statistics on first pass annotation | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% Beats.m -- Class for storing beat annotations | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% ECG12.m -- ECG Object Class | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
@@ -66,8 +66,8 @@ | |
switch format | ||
|
||
case 'bidmc_format' | ||
obj.hz=500; | ||
unitspermv=200; | ||
obj.hz = 500; | ||
unitspermv = 200; | ||
[obj.I, obj.II, obj.III, obj.avR, obj.avF, obj.avL, ... | ||
obj.V1, obj.V2, obj.V3, obj.V4, obj.V5, obj.V6] = load_ecg(filename, unitspermv, format); | ||
|
||
|
@@ -80,13 +80,13 @@ | |
obj.avL = obj.I - 0.5*obj.II; | ||
|
||
case 'prucka_format' | ||
obj.hz=997; | ||
unitspermv=1; | ||
obj.hz = 997; | ||
unitspermv = 1; | ||
[obj.I, obj.II, obj.III, obj.avR, obj.avF, obj.avL, ... | ||
obj.V1, obj.V2, obj.V3, obj.V4, obj.V5, obj.V6] = load_ecg(filename, unitspermv, format); | ||
|
||
case 'unformatted' | ||
unitspermv=1; | ||
unitspermv = 1; | ||
[obj.I, obj.II, obj.III, obj.avR, obj.avF, obj.avL, ... | ||
obj.V1, obj.V2, obj.V3, obj.V4, obj.V5, obj.V6, obj.hz] = load_unformatted(filename); | ||
|
||
|
@@ -118,10 +118,10 @@ | |
% Pull formatting details out of generic_csv_params.csv | ||
% This way can edit frequency, unitspermv, and | ||
% orientation if running via MATLAB or compiled version | ||
[obj.hz, unitspermv, orientation] = read_generic_csv_params(); | ||
[obj.hz, unitspermv, orientation, row_start, col_start, lead_order] = read_generic_csv_params(); | ||
|
||
[obj.I, obj.II, obj.III, obj.avR, obj.avF, obj.avL, ... | ||
obj.V1, obj.V2, obj.V3, obj.V4, obj.V5, obj.V6] = load_generic_csv(filename, unitspermv, orientation); | ||
obj.V1, obj.V2, obj.V3, obj.V4, obj.V5, obj.V6] = load_generic_csv(filename, unitspermv, orientation, row_start, col_start, lead_order); | ||
|
||
case 'cardiosoft_xml' | ||
[obj.hz, obj.I, obj.II, obj.III, obj.avR, obj.avF, obj.avL, ... | ||
|
@@ -150,6 +150,16 @@ | |
case 'physionet_dat' | ||
[obj.hz, obj.I, obj.II, obj.III, obj.avR, obj.avF, obj.avL, ... | ||
obj.V1, obj.V2, obj.V3, obj.V4, obj.V5, obj.V6] = load_physionet_dat(filename); | ||
|
||
case 'megacare_xml' | ||
[obj.hz, obj.I, obj.II, obj.III, obj.avR, obj.avF, obj.avL, ... | ||
obj.V1, obj.V2, obj.V3, obj.V4, obj.V5, obj.V6] = load_megacarexml(filename); | ||
|
||
case 'norav' | ||
obj.hz = 500; | ||
unitspermv = 409.84; | ||
[obj.I, obj.II, obj.III, obj.avR, obj.avF, obj.avL, ... | ||
obj.V1, obj.V2, obj.V3, obj.V4, obj.V5, obj.V6] = load_norav(filename, unitspermv); | ||
|
||
otherwise | ||
error('unknown format %s', format); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% GEH_calculations.m -- Performs multiple ECG/VCG calculations | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% HRV_Calc.m -- Basic HRV parameters | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% Lead_Morphology.m -- Lead_Morphology Results Class | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% NormalVals.m -- Class for storing normal values for select parameters | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% Quality.m -- Class for Quality assessment | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% Qualparams.m -- Qualparams class for controlling BRAVEHEART quality assessment | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% VCG.m -- VCG Object Class | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% VCG_Calc.m -- VCG_Calc Results Class | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% VCG_Morphology.m -- VCG_Morphology Results Class | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% add_beat_GUI.m -- Part of BRAVEHEART GUI | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% annoMF.m -- First pass heuristic annotations | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% annoMFannotate.m -- First pass heuristic annotations | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% azel2xyz.m -- Convert magnitude, azimuth, and elevation to Cartesian coordinates | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% baseline_shift_hfs.m -- Physiological baseline correction | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% baseline_voltage.m -- Calculate baseline voltage at the end of the T wave for quality metrics | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% batch_calc.m -- Annotates and computes all GEH and other statistics on an unfiltered ecg that the caller provides | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | ||
% BRAVEHEART - Open source software for electrocardiographic and vectorcardiographic analysis | ||
% beats_to_listbox.m -- Part of BRAVEHEART GUI | ||
% Copyright 2016-2024 Hans F. Stabenau and Jonathan W. Waks | ||
% Copyright 2016-2025 Hans F. Stabenau and Jonathan W. Waks | ||
% | ||
% Source code/executables: https://github.com/BIVectors/BRAVEHEART | ||
% Contact: [email protected] | ||
|
Oops, something went wrong.