| 146 | public: |
| 147 | virtual ~MatlabFormatter() {} |
| 148 | void write(std::ostream& out, const Mat& m, const int*, int) const |
| 149 | { |
| 150 | out << "["; |
| 151 | writeMat(out, m, ';', ' ', m.rows == 1); |
| 152 | out << "]"; |
| 153 | } |
| 154 | |
| 155 | void write(std::ostream& out, const void* data, int nelems, int type, const int*, int) const |
| 156 | { |
nothing calls this directly
no test coverage detected