QVector<double> x(101), y(101);
for (int i=0; i<101; ++i)
{
x[i] = i/50.0 - 1;
y[i] = x[i]*x[i];
}
QwtPlotCurve *curve;
curve->setData(x,y);
curve->attach(plot_all[0]);
私のQwtPlotであると仮定するplot_all[0]
と、ここで何が問題なのですか? Linuxで作成したプログラムがクラッシュします。