| 24 | } |
| 25 | |
| 26 | void DataMatrix::store(const std::string& rowname, |
| 27 | const std::vector<double>& values) |
| 28 | { |
| 29 | rownames_.push_back(rowname); |
| 30 | store_.push_back(values); |
| 31 | } |
| 32 | |
| 33 | void DataMatrix::colnames(const std::vector<std::string>& colnames) |
| 34 | { |