12 void quickplot (
const std::vector<T>& vals)
15 float xmax = vals.size();
17 float ymin = *min_element(vals.begin(), vals.end());
18 float ymax = *max_element(vals.begin(), vals.end());
20 cpgswin (xmin, xmax, ymin, ymax);
24 for (
unsigned ipt=1; ipt< vals.size(); ipt++)
25 cpgdraw (ipt, vals[ipt]);
29 void quickimage (
unsigned xdim,
const std::vector<float>& vals);