ImaGIN_find_channels.m
2.37 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
function iChannels = ImaGIN_find_channels(ChannelLabels, SelChannels)
% Find channel indices from a list.
% INPUTS:
% - ChannelLabels : Cell array of strings, list of available channel names.
% - SelChannels : Channels to select from this list, possible options:
% | - Array of indices ([1,2,...]),
% | - Array of cells ({'A1','A2',...})
% | - String, channel names separated with comas or spaces ('A1 A2 ...')
% | - String, channel indices separated with spaces ('1 2 ...')
% -=============================================================================
% This function is part of the ImaGIN software:
% https://f-tract.eu/
%
% This software is distributed under the terms of the GNU General Public License
% as published by the Free Software Foundation. Further details on the GPLv3
% license can be found at http://www.gnu.org/copyleft/gpl.html.
%
% FOR RESEARCH PURPOSES ONLY. THE SOFTWARE IS PROVIDED "AS IS," AND THE AUTHORS
% DO NOT ASSUME ANY LIABILITY OR RESPONSIBILITY FOR ITS USE IN ANY CONTEXT.
%
% Copyright (c) 2000-2018 Inserm U1216
% =============================================================================-
%
% Authors: Francois Tadel, 2017
% List of indices: use directly: [1 2 3 ...]
if isnumeric(SelChannels)
iChannels = SelChannels;
% Cell array of channel labels: {'A1','A2',...}
elseif iscell(SelChannels)
iChannels = [];
for i = 1:length(SelChannels)
iChannels = [iChannels, find(strcmpi(lower(SelChannels{i}), lower(ChannelLabels)))];
end
% String: 'A1 A2 ...' or '1 2 ...'
elseif ischar(SelChannels)
% Try to read as channel names
splitChannels = str_split(SelChannels, sprintf(' ,;\t'));
iChannels = [];
for i = 1:length(splitChannels)
iChannels = [iChannels, find(strcmpi(lower(splitChannels{i}), lower(ChannelLabels)))];
end
% If nothing is found, try to read as channel indices
if isempty(iChannels)
iChannels = str2num(SelChannels);
end
% If nothing is found, try to interpret as a Matlab expression
if isempty(iChannels)
try
iChannels = eval(SelChannels);
catch
iChannels = [];
end
end
else
error('Invalid value for parameter SelChannels.');
end
% Remove channels that are not in the available range
iChannels(iChannels > length(ChannelLabels)) = [];