ImaGIN_save_log.m
1.97 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
function LogFile = ImaGIN_save_log(FileName, Comment, ChanLabels)
% IMAGIN_SAVE_CHANLOG Appends a comment and a list of channel names to a text file.
%
% USAGE: LogFile = ImaGIN_save_chanlog(FileName, Comment, ChanLabels)
%
% INPUT:
% - FileName : Target file name (LogFile will be the same with _log.txt at the end)
% - Comment : Comment to add before the list of channels
% - ChanLabels : List of channels to list in the file
%
% OUTPUT:
% - LogFile : Name of the logfile that is generated
% -=============================================================================
% 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
% Parse inputs
if (nargin < 3) || isempty(ChanLabels)
ChanLabels = [];
end
% Create log filename
[fPath, fBase, fExt] = fileparts(FileName);
LogFile = fullfile(fPath, [fBase, '_log.txt']);
% Open file
fid = fopen(LogFile, 'a+');
if (fid < 0)
disp(['ImaGIN> Error: Cannot open log file "' LogFile '"']);
LogFile = [];
return;
end
% Write time and date
fprintf(fid, '[%s]\n', datestr(now, 0));
% Write comment line
if ~isempty(Comment)
fprintf(fid, '%s\n', Comment);
end
% Write channel labels
if ~isempty(ChanLabels)
for i = 1:length(ChanLabels)
fprintf(fid, '%s ', ChanLabels{i});
if (mod(i,20) == 0)
fprintf(fid, '\n');
end
end
fprintf(fid, '\n');
end
% Add an empty line to separate the entries
fprintf(fid, '\n');
% Close file
fclose(fid);