blob: 6cc455061d1c2a340dd776770cd2cff901817a99 [file] [log] [blame]
stefan@webrtc.orgeb74a372011-09-02 13:24:38 +00001function parsed = parseLog(filename)
2%
3% parsed = parseLog(filename)
4% Parses a DataLog text file, with the filename specified in the string
5% filename, into a struct with each column name as a field, and with the
6% column data stored as a vector in that field.
7%
8% Arguments
9%
10% filename: A string with the name of the file to parse.
11%
12% Return value
13%
14% parsed: A struct containing each column parsed from the input file
15% as a field and with the column data stored as a vector in that
16% field.
17%
18
19% Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
20%
21% Use of this source code is governed by a BSD-style license
22% that can be found in the LICENSE file in the root of the source
23% tree. An additional intellectual property rights grant can be found
24% in the file PATENTS. All contributing project authors may
25% be found in the AUTHORS file in the root of the source tree.
26
27table = importdata(filename, ',', 1);
28parsed = struct;
29i = 1;
30while i <= length(table.colheaders)
31 % Checking for a multi-value column.
32 m = regexp(table.colheaders{i}, '([\w\t]+)\[(\d+)\]', 'tokens');
33 if ~isempty(m)
34 % Parse a multi-value column
35 n = str2double(m{1}{2}) - 1;
36 parsed.(strrep(m{1}{1}, ' ', '_')) = table.data(:, i:i+n);
37 i = i + n + 1;
38 elseif ~isempty(table.colheaders{i})
39 % Parse a single-value column
40 parsed.(strrep(table.colheaders{i}, ' ', '_')) = table.data(:, i);
41 i = i + 1;
42 else
43 error('Error: Empty column');
44 end
45end