JKQtPlotter/examples/simpletest_impulsesplot
jkriege2 2d08250db6 - added new graph: JKQTPSingleColumnSymbolsGraph
- fixed additional renames JKQTPLotter->JKQTPlotter
- improved documentation (boxplots, JKQTMathText)
- added several examples
2019-01-20 16:15:10 +01:00
..
jkqtplotter_simpletest_impulsesplot_and_lib.pro added example for geometric objects 2019-01-07 21:00:56 +01:00
jkqtplotter_simpletest_impulsesplot.cpp - added new graph: JKQTPSingleColumnSymbolsGraph 2019-01-20 16:15:10 +01:00
jkqtplotter_simpletest_impulsesplot.pro - added new graph: JKQTPSingleColumnSymbolsGraph 2019-01-20 16:15:10 +01:00
README.md - added new graph: JKQTPSingleColumnSymbolsGraph 2019-01-20 16:15:10 +01:00

Example (JKQTPlotter): Simple impulse plots

This project (see ./examples/simpletest_impulsesplot/) simply creates a JKQTPlotter widget (as a new window) and adds a single impulse graph. The source code of the main application is (see jkqtplotter_simpletest_impulsesplot.cpp.

First data for a curve is calculated and stored in QVector<double>:

    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

    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:

    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);

The result looks like this:

jkqtplotter_simpletest_impulsesplot

There is an alternative class JKQTPImpulsesHorizontalGraph which draws horizontal impulse plots:

    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)$"));

This code snippet results in a plot like this:

jkqtplotter_simpletest_impulsesplot