16 void mnplot(
double *xpt,
double *ypt,
char *chpt,
int nxypt,
int npagwd,
int npagln);
21 std::vector<double>
x;
23 std::vector<double>
y;
25 std::vector<char> chpt;
26 chpt.reserve(
points.size());
28 for (std::vector<std::pair<double, double>>::const_iterator ipoint =
points.begin(); ipoint !=
points.end();
30 x.push_back((*ipoint).first);
31 y.push_back((*ipoint).second);
41 std::vector<double>
x;
45 std::vector<double>
y;
49 std::vector<char> chpt;
50 chpt.reserve(
points.size() + 2);
54 for (std::vector<std::pair<double, double>>::const_iterator ipoint =
points.begin(); ipoint !=
points.end();
56 x.push_back((*ipoint).first);
57 y.push_back((*ipoint).second);