QcustomPlot不想绘制图形

时间:2013-03-14 10:29:00

标签: c++ visual-studio-2010 qt qcustomplot

我是QCustomPlot的新手,想要开始QCustomPlot的第一个例子,它是一个基本用法。在下面的代码中:我总是有一个断点,在程序即将调试时停止程序(没有错误并且构建成功)

QCustomPlot *customPlot;

QVector<double> x(101), y(101); 
for (int i=0; i<101; ++i) {
  x[i] = i/50.0 - 1; // x goes from -1 to 1
  y[i] = x[i]*x[i]; // let's plot a quadratic function
}
customPlot->addGraph();
customPlot->graph(0)->setData(x, y);
customPlot->xAxis->setLabel("x");
customPlot->yAxis->setLabel("y");
customPlot->xAxis->setRange(-1, 1);
customPlot->yAxis->setRange(0, 1);
customPlot->replot();

}

显示的错误:

Unhandled exception at 0x58e828f1 (QtCored4.dll) in ex4.exe: 0xC0000005: 
Access violation reading location 0x00000050.

断点在这里(QList.h文件):

inline int size() const { return d->end - d->begin; }

1 个答案:

答案 0 :(得分:-1)

请尝试:

x[i] = i/50 - 1;

工作正常