| 37 | } |
| 38 | |
| 39 | ClassicDescMod( // constructor |
| 40 | int profwidth, |
| 41 | const double* const meanprof_data, |
| 42 | const double* const covi_data) |
| 43 | |
| 44 | : meanprof_(ArrayAsMat(1, profwidth, meanprof_data)), |
| 45 | covi_(ArrayAsMat(profwidth, profwidth, covi_data)) |
| 46 | { |
| 47 | } |
| 48 | |
| 49 | private: |
| 50 | const MAT meanprof_; // mean of the training profiles for this point |
nothing calls this directly
no test coverage detected