Reformatted data_log.

BUG=

Review URL: https://webrtc-codereview.appspot.com/974007

git-svn-id: http://webrtc.googlecode.com/svn/trunk@3221 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
phoglund@webrtc.org
2012-12-03 09:01:21 +00:00
parent c94f8d4e8f
commit ba21c95e15
10 changed files with 61 additions and 70 deletions

View File

@ -8,34 +8,32 @@
* be found in the AUTHORS file in the root of the source tree.
*/
/*
* This singleton can be used for logging data for offline processing. Data
* logged with it can conveniently be parsed and processed with e.g. Matlab.
*
* Following is an example of the log file format, starting with the header
* row at line 1, and the data rows following.
* col1,col2,col3,multi-value-col4[3],,,col5
* 123,10.2,-243,1,2,3,100
* 241,12.3,233,1,2,3,200
* 13,16.4,-13,1,2,3,300
*
* As can be seen in the example, a multi-value-column is specified with the
* name followed the number of elements it contains. This followed by
* number of elements - 1 empty columns.
*
* Without multi-value-columns this format can be natively by Matlab. With
* multi-value-columns a small Matlab script is needed, available at
* trunk/tools/matlab/parseLog.m.
*
* Table names and column names are case sensitive.
*/
// This singleton can be used for logging data for offline processing. Data
// logged with it can conveniently be parsed and processed with e.g. Matlab.
//
// Following is an example of the log file format, starting with the header
// row at line 1, and the data rows following.
// col1,col2,col3,multi-value-col4[3],,,col5
// 123,10.2,-243,1,2,3,100
// 241,12.3,233,1,2,3,200
// 13,16.4,-13,1,2,3,300
//
// As can be seen in the example, a multi-value-column is specified with the
// name followed the number of elements it contains. This followed by
// number of elements - 1 empty columns.
//
// Without multi-value-columns this format can be natively by Matlab. With
// multi-value-columns a small Matlab script is needed, available at
// trunk/tools/matlab/parseLog.m.
//
// Table names and column names are case sensitive.
#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_
#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_DATA_LOG_H_
#include <string>
#include "data_log_impl.h"
#include "webrtc/system_wrappers/interface/data_log_impl.h"
namespace webrtc {