JKQtPlotter/examples/simpletest_impulsesplot/README.md

54 lines
2.0 KiB
Markdown
Raw Normal View History

# Example (JKQTPlotter): Simple impulse plots {#JKQTPlotterImpulsePlots}
This project (see `./examples/simpletest_impulsesplot/`) simply creates a JKQTPlotter widget (as a new window) and adds a single impulse graph.
2019-02-03 22:54:41 +08:00
The source code of the main application is (see [`jkqtplotter_simpletest_impulsesplot.cpp`](https://github.com/jkriege2/JKQtPlotter/tree/master/examples/simpletest_impulsesplot/jkqtplotter_simpletest_impulsesplot.cpp).
First data for a curve is calculated and stored in `QVector<double>`:
2019-01-19 16:40:52 +08:00
```.cpp
QVector<double> X, Y;
for (int i=0; i<Ndata; i++) {
const double xx=double(i)/double(Ndata)*6.0*M_PI;
X << xx;
Y << cos(xx)*exp(-xx/10.0);
}
```
... and finally the data is copied into the datastore
2019-01-19 16:40:52 +08:00
```.cpp
size_t columnX=ds->addCopiedColumn(X, "x");
size_t columnY=ds->addCopiedColumn(Y, "y");
```
Now an impulse graph object is generated and added to the plot:
2019-01-19 16:40:52 +08:00
```.cpp
JKQTPImpulsesVerticalGraph* graph=new JKQTPImpulsesVerticalGraph(&plot);
graph->setXColumn(columnX);
graph->setYColumn(columnY);
graph->setLineWidth(2);
graph->setColor(QColor("red"));
graph->setTitle(QObject::tr("$\\cos(x)\\cdot\\exp(-x/10)$"));
plot.addGraph(graph);
```
The result looks like this:
2019-02-03 22:54:41 +08:00
![jkqtplotter_simpletest_impulsesplot](https://raw.githubusercontent.com/jkriege2/JKQtPlotter/master/screenshots/jkqtplotter_simpletest_impulsesplot.png)
There is an alternative class `JKQTPImpulsesHorizontalGraph` which draws horizontal impulse plots:
2019-01-19 16:40:52 +08:00
```.cpp
JKQTPImpulsesHorizontalGraph* graph=new JKQTPImpulsesHorizontalGraph(&plot);
graph->setYColumn(columnX);
graph->setXColumn(columnY);
graph->setLineWidth(2);
graph->setColor(QColor("blue"));
graph->setTitle(QObject::tr("$\\cos(x)\\cdot\\exp(-x/10)$"));
```
This code snippet results in a plot like this:
2019-02-03 22:54:41 +08:00
![jkqtplotter_simpletest_impulsesplot](https://raw.githubusercontent.com/jkriege2/JKQtPlotter/master/screenshots/jkqtplotter_simpletest_impulsesplot_horizontal.png)