我在 QCustomPlot 库中绘制图形时遇到问题。我想绘制一个对数图,但我在区间 <-3;3> 上使用绘图。因为对数不是从 -3 到 0 定义的,所以我在绘制这个区间时尝试什么都不做。
我有这个代码:
QVector<double> x(10001), y(10001);
QVector<double> x1(10001), y1(10001);
double t=-3; //cas
double inkrement = 0.0006;
for (int i=0; i<10001; i++)//kvadraticka funkcia
{
x[i] = t;
y[i] = (-1)*t*t-2;
t+=inkrement;
}
int g=0;
for(double l=-3;l<3; l+=inkrement) {
if(l<=0.0) continue;
else {
//QMessageBox::warning(this, tr("note"), tr("l=%1\n").arg(l), QMessageBox::Ok);
x1[g] = l;
y1[g] = log10(l)/log10(exp(1.0));
//QMessageBox::warning(this, tr("note"), tr("x1=%1\ny1=%2").arg(x1[g]).arg(y1[g]), QMessageBox::Ok);
//break;
g++;
}
}
customPlot->addGraph();
customPlot->graph(0)->setData(x, y);
customPlot->addGraph();
customPlot->graph(1)->setData(x1, y1);
customPlot->xAxis->setLabel("x");
customPlot->yAxis->setLabel("y");
customPlot->xAxis->setRange(-3, 3);
customPlot->yAxis->setRange(-10, 5);
customPlot->replot();
其中 x1 和 y1 是 QVectors...但是该图就像第一个点在 [0,0] 中。所以我有一条线将点 [0,0] 与对数图连接起来,我不知道为什么:( 当我在循环之前放 l=0.0006 时,一切都很好。你能帮我吗?