-
Notifications
You must be signed in to change notification settings - Fork 11
/
loadbvef.m
71 lines (56 loc) · 2.26 KB
/
loadbvef.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
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
% loadbvef() - Load BrainVision electrode location file
%
% Usage:
% >> chanlocs = loadbvef( filename );
%
% Inputs:
% filename - filename incl. filepath
%
% Outputs:
% chanlocs - EEGLAB chanlocs structure
%
% References:
% http://de.mathworks.com/help/matlab/import_export/importing-xml-documents.html
%
% Author: Andreas Widmann, University of Leipzig, 2015
%123456789012345678901234567890123456789012345678901234567890123456789012
% Copyright (C) 2015 Andreas Widmann, University of Leipzig, [email protected]
%
% This program 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 2 of the License, or
% (at your option) any later version.
%
% This program 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, write to the Free Software
% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
function [ chanlocs ] = loadbvef( filename )
% Import/export tag/field name mapping
fieldNames = { 'Name', 'labels', 1; 'Theta', 'sph_theta_besa', 0; 'Phi', 'sph_phi_besa', 0; 'Radius', 'sph_radius', 0 };
% Read file
xDoc = xmlread( filename );
% Loop over electrodes
allListitems = xDoc.getElementsByTagName( 'Electrode' );
for k = 0:allListitems.getLength - 1
thisListitem = allListitems.item( k );
% Loop over fields
for iField = 1:size( fieldNames, 1 )
thisList = thisListitem.getElementsByTagName( fieldNames{ iField, 1 } );
thisElement = thisList.item( 0 );
% String or numeric
if fieldNames{ iField, 3 }
chanlocs( k + 1 ).( fieldNames{ iField, 2 } ) = char( thisElement.getFirstChild.getData ); %#ok<AGROW>
else
chanlocs( k + 1 ).( fieldNames{ iField, 2 } ) = str2double( thisElement.getFirstChild.getData ); %#ok<AGROW>
end
end
end
% Convert from BESA
chanlocs = convertlocs( chanlocs, 'sphbesa2all' );
chanlocs = rmfield( chanlocs, { 'sph_phi_besa', 'sph_theta_besa' } );
end