49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<< "plot\\" << endl;
for (list<record_t>::iterator i = Lx.begin(); i != Lx.end() ; i++)
{
if (Lx.begin() != i)
{
out << ",\\" << endl;
}
out << "\t\"MTT_work/" << sys << "_odes2.dat\" using 1:" << 2 + Ly.size() + i->num
<< " axes x1y1"
<< " title \"" << i->mod << "_" << i->cmp << "\"";
}
out << endl << endl << "pause(-1)" << endl << endl;
// write states (postscript)
|
|
|
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<< "plot\\" << endl;
for (list<record_t>::iterator i = Lx.begin(); i != Lx.end() ; i++)
{
if (Lx.begin() != i)
{
out << ",\\" << endl;
}
out << "\t\"MTT_work/" << sys << "_odes.dat2\" using 1:" << 2 + Ly.size() + i->num
<< " axes x1y1"
<< " title \"" << i->mod << "_" << i->cmp << "\"";
}
out << endl << endl << "pause(-1)" << endl << endl;
// write states (postscript)
|
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<< "plot\\" << endl;
for (list<record_t>::iterator i = Ly.begin(); i != Ly.end() ; i++)
{
if (Ly.begin() != i)
{
out << ",\\" << endl;
}
out << "\t\"MTT_work/" << sys << "_odes2.dat\" using 1:" << 1 + i->num
<< " axes x1y1"
<< " title \"" << i->mod << "_" << i->cmp << "\"";
}
out << endl << endl << "pause(-1)" << endl << endl;
// write outputs (postscript)
|
|
|
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<< "plot\\" << endl;
for (list<record_t>::iterator i = Ly.begin(); i != Ly.end() ; i++)
{
if (Ly.begin() != i)
{
out << ",\\" << endl;
}
out << "\t\"MTT_work/" << sys << "_odes.dat2\" using 1:" << 1 + i->num
<< " axes x1y1"
<< " title \"" << i->mod << "_" << i->cmp << "\"";
}
out << endl << endl << "pause(-1)" << endl << endl;
// write outputs (postscript)
|