Mercurial > hg > svcore
comparison data/fileio/CSVFormat.h @ 1512:c9c2aa17439a import-audio-data
Add small, signed
author | Chris Cannam |
---|---|
date | Thu, 06 Sep 2018 16:26:19 +0100 |
parents | 12b7a9613eb5 |
children | ffec849858a7 |
comparison
equal
deleted
inserted
replaced
1511:12b7a9613eb5 | 1512:c9c2aa17439a |
---|---|
54 ColumnPitch, | 54 ColumnPitch, |
55 ColumnLabel | 55 ColumnLabel |
56 }; | 56 }; |
57 | 57 |
58 enum ColumnQuality { | 58 enum ColumnQuality { |
59 ColumnNumeric = 1, | 59 ColumnNumeric = 1, // No non-numeric values were seen in sample |
60 ColumnIntegral = 2, | 60 ColumnIntegral = 2, // All sampled values were integers |
61 ColumnIncreasing = 4, | 61 ColumnIncreasing = 4, // Sampled values were monotonically increasing |
62 ColumnLarge = 8, | 62 ColumnSmall = 8, // All sampled values had magnitude < 1 |
63 ColumnNearEmpty = 16, | 63 ColumnLarge = 16, // Values "quickly" grew to over 1000 |
64 ColumnSigned = 32, // Some negative values were seen | |
65 ColumnNearEmpty = 64, // Nothing in this column beyond first row | |
64 }; | 66 }; |
65 typedef unsigned int ColumnQualities; | 67 typedef unsigned int ColumnQualities; |
66 | 68 |
67 CSVFormat() : // arbitrary defaults | 69 CSVFormat() : // arbitrary defaults |
68 m_modelType(TwoDimensionalModel), | 70 m_modelType(TwoDimensionalModel), |