Index of /~gari/CODE/DOWER

      Name                    Last modified       Size  Description

[DIR] Parent Directory 10-Aug-2008 12:29 - [   ] DOWER.zip 30-Apr-2006 11:19 358k [   ] Dower.zip 29-Nov-2006 00:48 307k [TXT] README.txt 30-Apr-2006 11:19 3k [   ] allLeads.dat 28-Apr-2006 16:38 947k [   ] idowerT.m 30-Apr-2006 11:06 2k [IMG] s00010_reVCGart.png 28-Apr-2006 18:19 17k [IMG] s00010_reVCGcf.png 28-Apr-2006 18:19 14k [IMG] s00010_reVCGcfnorm.png 28-Apr-2006 18:19 16k [IMG] s00010_reVCGreal.png 28-Apr-2006 18:19 18k [   ] testDower.m 30-Apr-2006 11:04 2k

% Matlab functions to apply inverse Dower transformation to construct VCG.
% 
% See Chapter 8, Bailon, Laguna & Sornmo in "Advanced Methods and Tools for ECG Analysis".
%
% Gari D. Clifford April 2006  http://alum.mit.edu/www/gari/ecgtools

total 2762
drwx------   2 gari     mit         2048 Apr 30 11:13 .
drwx------  11 gari     mit         2048 Apr 30 11:11 ..
-rw-------   1 gari     mit       365186 Apr 30 11:13 DOWER.zip
-rw-------   1 gari     mit            0 Apr 30 11:13 README.txt
-rw-------   1 gari     mit       970000 Apr 28 16:38 allLeads.dat
-rw-------   1 gari     mit         1727 Apr 30 11:06 idowerT.m
-rw-------   1 gari     mit        17612 Apr 28 18:19 s00010_reVCGart.png
-rw-------   1 gari     mit        14777 Apr 28 18:19 s00010_reVCGcf.png
-rw-------   1 gari     mit        15943 Apr 28 18:19 s00010_reVCGcfnorm.png
-rw-------   1 gari     mit        18679 Apr 28 18:19 s00010_reVCGreal.png
-rw-------   1 gari     mit         1922 Apr 30 11:04 testDower.m


% Run testDower.m under Matlab to generate the four figures (png files) above.
% If you do not have physiotools (www.physionet.org) installed, or some form of
% Linux OS, then comment out the line 
 !rdsamp -r ptbdb/patient001/s0010_re | head -10000 > allLeads.dat
% and just load allLeads.dat directly

% Although several methods have been proposed for synthesizing the VCG from the 12-lead ECG,
% the inverse transformation matrix of Dower is the most commonly used [31]. Dower et al. presented
% a method for deriving the 12-lead ECG from Frank lead VCG [44]. Each ECG lead is calculated as
% a weighted sum of the VCG leads X, Y and Z using lead-specic coefcients based on the image
% surface data from the original torso studies by Frank [45]. The transformation operation used to
% derive the eight independent leads (V1-V6, I and II) of the 12-lead ECG from the VCG leads is
% given by, s=Dv, where 

D = [  
-0.515  0.157   -0.917;
 0.044  0.164   -1.387;
 0.882  0.098   -1.277;
 1.213  0.127   -0.601;
 1.125  0.127   -0.086;
 0.831  0.076    0.230;
 0.632 -0.235    0.059;
 0.235  1.066   -0.132];



% where s(n)=[V1(n) V2(n) V3(n) V4(n) V5(n) V6(n) I(n) II(n)]^T and v(n)=[X(n) Y (n) Z(n)]^T
% contain the voltages of the corresponding leads, n denotes sample index and D is called the Dower
% transformation matrix. From s=Dv, it follows that the VCG leads can be synthesized from the 12-lead
% ECG by  v(n) = Ts(n);  where T=pinv(D'*D)*D' is called the inverse Dower transformation matrix 
% and is given by

T = [ -0.172 -0.074  0.122  0.231 0.239 0.194  0.156 -0.010 ;
       0.057 -0.019 -0.106 -0.022 0.041 0.048 -0.227  0.887 ;
      -0.229 -0.310 -0.246 -0.063 0.055 0.108  0.022  0.102 ];

% check with    TT=pinv(D'*D)*D';
   
% so the inverse Dower transform is :  
vcg = T*ecg';
vcg=vcg';