Skip to content

Commit 28be481

Browse files
committed
remove enforcing of lower case for column headers
1 parent c0e5b95 commit 28be481

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

saveEventsFile.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
% also prepare an empty field in the structure to collect data
156156
% for those
157157
for iExtraColumn = 1:numel(varargin{1})
158-
fprintf(logFile.fileID, '%s\t', lower(varargin{1}{iExtraColumn}));
158+
fprintf(logFile.fileID, '%s\t', varargin{1}{iExtraColumn});
159159
end
160160

161161
% next line so we start printing at the right place

tests/test_saveEventsFile.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function test_saveEventsFile()
7373
C = textscan(FID, '%s%s%s%s%s', 'Delimiter', '\t', 'EndOfLine', '\n');
7474

7575
% check header
76-
assert(isequal(C{4}{1}, 'speed'));
76+
assert(isequal(C{4}{1}, 'Speed'));
7777

7878
% check that empty values are entered as NaN
7979
assert(isequal(C{4}{2}, 'NaN'));

0 commit comments

Comments
 (0)