I am struck with how to proceed with calculations....since its a horizontal line with values and i have to calculate vertically. |
|
|
|
|
|
|
std::vector<std::vector<double>> foo( 23 ):
. That foo has one vector for each column. The downside is that every column now contains floating point values, even though the data has integers.Table foo;
, where Table is a struct that has 23 vector members, one for each column.
data is float, integers, doubles, negative values. |
|
|
all the data in one "row" is same type |
i have shared initial 4 rows |
Each column stores values from 23 different fields |
|
|
Lets try this, after we can generalize |
|
|
|
|
|
|
|
|
|
|