2018-12-12 06:00:43 +08:00
[Back to JKQTPlotter main page ](https://github.com/jkriege2/JKQtPlotter/ )
# JKQtPlotter
## Simple impulse plots
This project (see `./test/simpletest_impulsesplot/` ) simply creates a JKQtPlotter widget (as a new window) and adds a single impulse graph.
The soruce code of the main application is (see [`jkqtplotter_simpletest_impulsesplot.cpp` ](https://github.com/jkriege2/JKQtPlotter/blob/master/test/simpletest_impulsesplot/jkqtplotter_simpletest_impulsesplot.cpp ).
2018-12-12 06:01:03 +08:00
First data for a curve is calculated and stored in `QVector<double` :
2018-12-12 06:00:43 +08:00
```c++
2018-12-12 06:01:03 +08:00
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 ) ;
}
2018-12-12 06:00:43 +08:00
```
2018-12-12 06:01:03 +08:00
... and finally the data is copied into the datastore
2018-12-12 06:00:43 +08:00
```c++
2018-12-12 06:01:03 +08:00
size_t columnX=ds->addCopiedColumn(X, "x");
size_t columnY=ds->addCopiedColumn(Y, "y");
2018-12-12 06:00:43 +08:00
```
2018-12-12 06:01:03 +08:00
Now an impulse graph object is generated and added to the plot:
2018-12-12 06:00:43 +08:00
```c++
2018-12-12 06:01:03 +08:00
JKQTPimpulsesVerticalGraph* graph=new JKQTPimpulsesVerticalGraph(&plot);
graph->set_xColumn(columnX);
graph->set_yColumn(columnY);
graph->set_lineWidth(2);
graph->set_color(QColor("red"));
graph->set_title(QObject::tr("$\\cos(x)\\cdot\\exp(-x/10)$"));
plot.addGraph(graph);
2018-12-12 06:00:43 +08:00
```
2018-12-12 06:01:03 +08:00
The result looks like this:
2018-12-12 06:00:43 +08:00
2018-12-12 06:01:03 +08:00
![jkqtplotter_simpletest_impulsesplot ](https://raw.githubusercontent.com/jkriege2/JKQtPlotter/master/screenshots/jkqtplotter_simpletest_impulsesplot.png )
2018-12-12 06:00:43 +08:00
2018-12-12 06:01:03 +08:00
There is an alternative class `JKQTPimpulsesHorizontalGraph` which draws horizontal impulse plots:
2018-12-12 06:00:43 +08:00
```c++
2018-12-12 06:01:03 +08:00
JKQTPimpulsesHorizontalGraph* graph=new JKQTPimpulsesHorizontalGraph(&plot);
graph->set_yColumn(columnX);
graph->set_xColumn(columnY);
graph->set_lineWidth(2);
graph->set_color(QColor("blue"));
graph->set_title(QObject::tr("$\\cos(x)\\cdot\\exp(-x/10)$"));
2018-12-12 06:00:43 +08:00
```
2018-12-12 06:01:03 +08:00
This code snippet results in a plot like this:
2018-12-12 06:00:43 +08:00
2018-12-12 06:01:03 +08:00
![jkqtplotter_simpletest_impulsesplot ](https://raw.githubusercontent.com/jkriege2/JKQtPlotter/master/screenshots/jkqtplotter_simpletest_impulsesplot_horizontal.png )
2018-12-12 06:00:43 +08:00
[Back to JKQTPlotter main page ](https://github.com/jkriege2/JKQtPlotter/ )