2019-01-19 16:40:52 +08:00
/*!
\page exampleTutorialProjects Example & Tutorial Projects
This section assembles some simple examples of usage.
You can find more (complex) examples for the classes in this repository in the subfolder "test".
All test-projects are Qt-projects that use qmake to build. You can load them into QtCreator easily.
\section jkqtp_extut Overview of Examples&Tutorials
\subsection jkqtp_extut_plotstyles Different Plot Data Styles
<table>
<tr><th>Screenshot<th>Description<th>Notes
<tr><td> \image html jkqtplotter_simpletest1_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterSimpleTest
2019-01-20 17:49:29 +08:00
<td> `JKQTPXYLineGraph` <br> C++-style QVector arrays of data
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_speed_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterSpeedTest
2019-01-20 17:49:29 +08:00
<td> `JKQTPXYLineGraph` <br> external `std::array<double,N>` data, not owned by datastore <br> live-data, measure plotting speed <br> tipps to increas plotting speed
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_symbols_and_styles_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterSymbolsAndStyles
2019-01-20 17:49:29 +08:00
<td> `JKQTPXYLineGraph` <br> C++ vector of data <br> setting line styles and symbol styles <br> automatic graph coloring
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_stepplots_small.png
2019-04-22 19:27:50 +08:00
<td> \subpage JKQTPlotterSpecialStepLinePlot
<td> `JKQTPSpecialLineHorizontalGraph` <br> C++ vector of data <br> different step/special line modes, filled and line-only
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_symbols_and_errors_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterSymbolsErrors
2019-01-20 17:49:29 +08:00
<td> `JKQTPXYLineErrorGraph` <br> C-style arrays of data
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_errorbarstyles_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterErrorBarStyles
2019-01-20 17:49:29 +08:00
<td> `JKQTPXYLineErrorGraph` <br> different styles of error indicators for x- and y-errors <br> C++-style QVector for data <br> styling error indicators <br> moving key and formatting plotter grid
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_barchart_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterBarcharts
2019-01-20 17:49:29 +08:00
<td> `JKQTPBarVerticalGraph` <br> C-style arrays of data
<tr><td> \image html JKQTPBarHorizontalGraphStacked_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterStackedBarChart
2019-01-20 17:49:29 +08:00
<td> `JKQTPBarVerticalStackableGraph`, `JKQTPBarHorizontalStackableGraph` <br> C++-style vectors of data
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_filledgraphs_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterFilledGraphs
2019-01-20 17:49:29 +08:00
<td> `JKQTPBarVerticalGraph` <br> setting/altering data in `JKQTPDatstore` directly <br> transparent plots <br> calculating histograms
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_impulsesplot_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterImpulsePlots
2019-01-20 17:49:29 +08:00
<td> `JKQTPImpulsesVerticalGraph` and `JKQTPImpulsesHorizontalGraph` <br> C++-style QVector as plot data
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_paramscatterplot_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterParamScatter
2019-01-20 17:49:29 +08:00
<td> `JKQTPXYParametrizedScatterGraph` <br> C++-style QVector as plot data <br> modify scatter/points/line-graph properties by data
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_paramscatterplot_image_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterParamScatterImage
2019-01-20 17:49:29 +08:00
<td> `JKQTPXYParametrizedScatterGraph` <br> C++-style QVector as plot data <br> rectangular arrangement of scatters <br> generative computer graphics
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_parametriccurve_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterParametricCurves
2019-01-20 17:49:29 +08:00
<td> `JKQTPXYLineGraph` and `JKQTPXYParametrizedScatterGraph` <br> C++-style QVector as plot data <br> parametric curve plotting
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_functionplot_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterFunctionPlots
2019-01-20 17:49:29 +08:00
<td> `JKQTPXFunctionLineGraph` <br> diretly plotting C/C++-functions
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_parsedfunctionplot_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterParsedFunctionPlot
2019-01-20 17:49:29 +08:00
<td> `JKQTPXParsedFunctionLineGraph` <br> plotting functions with the internal math equation parser/evaluator
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_geometric_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterGeometricGraphs
2019-01-20 17:49:29 +08:00
<td> `JKQTPPlotObject`, `JKQTPGeoArc`, `JKQTPGeoLine`, `JKQTPGeoRectangle`, ...
2019-01-20 23:15:10 +08:00
<tr><td> \image html jkqtplotter_simpletest_boxplot_small.png
<td> \subpage JKQTPlotterBoxplotsGraphs
<td> `JKQTPBoxplotVerticalGraph`, `JKQTPBoxplotHorizontalGraph`, ...
2019-01-19 16:40:52 +08:00
</table>
\subsection jkqtp_extut_keyaxesstyles Styling the Plot, Keys, Axes, ...
<table>
<tr><th> Screenshot <th> Description <th> Notes
<tr><td> \image html jkqtplotter_simpletest_logaxes_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterLogAxes
2019-01-20 17:49:29 +08:00
<td> `JKQTPXYLineGraph` and `JKQTPGeoText` <br> C++ vector of data <br> logarithmic axes and styling <br> plot line styles <br> internal LaTeX parser <br> add commenting text to a graph
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_dateaxes_timeaxis_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterDateTimeAxes
2019-01-20 17:49:29 +08:00
<td> `JKQTPXYLineGraph` and `JKQTPFilledVerticalRangeGraph` <br> C++ vector of data <br> date/time axes <br> plot min/max range graph <br> internal LaTeX parser <br> data from CSV files
2019-04-24 05:50:06 +08:00
<tr><td> \image html jkqtplotter_simpletest_advancedlineandfillstyling_small.png
<td> \subpage JKQTPlotterAdvancedLineAndFillStyling
<td> `JKQTPXYLineGraph`, `JKQTPSpecialLineHorizontalGraph` and `JKQTPBarVerticalGraph` <br> C++ vector of data <br> advanced line styling and filling
2019-05-11 21:56:11 +08:00
<tr><td> \image html test_styledboxplot_small.png
<td> \subpage JKQTPlotterBoxplotStyling
<td> Modifying different Aspects of the Styling of boxplots
<tr><td> \image html test_styling_small.png
<td> \subpage JKQTPlotterStyling
<td> Modifying different Aspects of the Styling of JKQTPlotter
2019-01-19 16:40:52 +08:00
</table>
\subsection jkqtp_extut_plotimagedata Image data Plots
<table>
<tr><th> Screenshot <th> Description <th> Notes
<tr><td> \image html jkqtplotter_simpletest_rgbimageplot_qt_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterImagePlotQImageRGB
2019-02-10 05:17:01 +08:00
<td> `JKQTPImage` <br> `QImage` drawn onto a plot with arbitrary scaling <br> inverted coordinate axes
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_imageplot_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterImagePlot
2019-01-19 16:40:52 +08:00
<td> `JKQTPColumnMathImage` <br> image data copied from C-style row-major array into a single column of the internal datastore <br> Describes several options of the image plotting classes (different ways of color coding, what to do with data above/below the limits etc.)
<tr><td> \image html jkqtplotter_simpletest_imageplot_modifier_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterImagePlotModifier
2019-01-19 16:40:52 +08:00
<td> `JKQTPColumnMathImage` <br> image data copied from C-style row-major array into a single column of the internal datastore <br> Image is modified by a second image to display two data dimensions at the same time
<tr><td> \image html jkqtplotter_simpletest_imageplot_nodatastore_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterImagePlotNoDatastore
2019-01-19 16:40:52 +08:00
<td> `JKQTPMathImage` <br> image data in a C-style row-major array, not using internal datastore
2019-02-10 05:17:01 +08:00
<tr><td> \image html jkqtplotter_simpletest_rgbimageplot_small.png
<td> \subpage JKQTPlotterRGBImagePlot
<td> `JKQTPColumnRGBMathImage` <br> image data in a C-style row-major array, not using internal datastore <br> RGB/CMY color compositing
2019-01-19 16:40:52 +08:00
<tr><td> \image html jkqtplotter_simpletest_imageplot_opencv_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterImagePlotOpenCV
2019-01-19 16:40:52 +08:00
<td> `JKQTPColumnMathImage` <br> image data copied from OpenCV cv::Mat-structure into a single column of the internal datastore
<tr><td> \image html jkqtplotter_simpletest_rgbimageplot_opencv_small.png
2019-01-20 23:15:10 +08:00
<td> \subpage JKQTPlotterImagePlotRGBOpenCV
2019-02-10 05:17:01 +08:00
<td> `JKQTPColumnRGBMathImage` <br> image data copied from OpenCV cv::Mat-structure into three columns of the internal datastore <br> inverted coordinate axes
2019-05-19 04:41:38 +08:00
<tr><td> \image html jkqtplotter_simpletest_contourplot_small.png
<td> \subpage JKQTPlotterContourPlot
<td> `JKQTPColumnContourPlot` <br> image data edited inside JKQTPDatastore
2019-01-19 16:40:52 +08:00
</table>
2019-02-08 00:24:46 +08:00
2019-01-19 16:40:52 +08:00
2019-01-25 05:49:10 +08:00
\subsection jkqtp_extut_guitools GUI Tools
2019-01-19 16:40:52 +08:00
<table>
<tr><th> Screenshot <th> Description <th> Notes
2019-01-25 05:49:10 +08:00
<tr><td> \image html jkqtplotter_simpletest_ui_small.png
<td> \subpage JKQTPlotterQtCreator
2019-01-20 23:15:10 +08:00
<td> using Qt Form Designer <br> parsed function plots (`JKQTPXParsedFunctionLineGraph`)
2019-02-04 04:00:15 +08:00
<tr><td> \image html jkqtplotter_test_user_interaction_small.gif
2019-01-25 05:49:10 +08:00
<td> \subpage JKQTPlotterUserInteraction
<td> different possibilities of user-interaction in JKQtPlotter
</table>
\subsection jkqtp_extut_guitoolslayout Layout & Styling
<table>
<tr><th> Screenshot <th> Description <th> Notes
<tr><td> \image html test_multiplot_small.png
<td> \subpage JKQTPlotterMultiPlotLayout
<td> Combining plots in Qt Layouts <br> linking plot axes <br> copy data from a `std::map` int the datastore <br> print plots/print preview
2019-02-04 04:00:15 +08:00
<tr><td> \image html test_styling_small.png
<td> \subpage JKQTPlotterStyling
<td> Modifying different Aspects of the Styling of JKQTPlotter
2019-01-20 23:15:10 +08:00
</table>
2019-05-30 04:40:02 +08:00
\subsection jkqtp_extut_datamanagement Data Management & Statistics
2019-05-13 04:22:48 +08:00
<table>
<tr><th> Screenshot <th> Description <th> Notes
<tr><td> \image html simpletest_datastore_small.png
2019-05-18 02:46:52 +08:00
<td> \subpage JKQTPlotterBasicJKQTPDatastore
<td> Basic Data Management with JKQTPDatastore <br/> Copying data into a JKQTPDatastore <br/> Editing data inside a JKQTPDatastore <br/> Editing Image Data in a JKQTPDatastore
2019-05-30 04:47:26 +08:00
<tr><td> \image html jkqtplotter_simpletest_datastore_statistics_small.png
2019-05-30 04:40:02 +08:00
<td> \subpage JKQTPlotterBasicJKQTPDatastoreStatistics
<td> Advanced 1-Dimensional Statistical Computation with JKQTPODatastore (and the internal statistics library, see \ref jkqtptools_math_statistics )
2019-05-13 04:22:48 +08:00
</table>
2019-01-20 23:15:10 +08:00
\subsection jkqtp_extut_complexexamples More Complex Examples
<table>
<tr><th> Screenshot <th> Description <th> Notes
<tr><td> \image html test_multiplot_small.png
<td> \subpage JKQTPlotterMultiPlotLayout
<td> Combining plots in Qt Layouts <br> linking plot axes <br> copy data from a `std::map` int the datastore <br> print plots/print preview
<tr><td> \image html test_distributionplot_small.png
<td> \subpage JKQTPlotterDistributionPlot
<td> Combines several different graphs to draw random values, their distribution and some statistical properties
2019-01-19 16:40:52 +08:00
</table>
\subsection jkqtp_extut_specialfeatures Tools and Special Features
<table>
<tr><th> Screenshot <th> Description <th> Notes
<tr><td> \image html jkqtmathtext_simpletest_small.png
2019-01-20 17:49:29 +08:00
<td> \subpage JKQTMathTextSimpleExample
<td> JKQTMathText<br>render LaTeX markup (Schrödinger's equation)
2019-01-20 23:15:10 +08:00
<tr><td> \image html jkqtmathtext_testapp_small.png
<td> \subpage JKQTMathTextTestApp
<td> JKQTMathText<br>render LaTeX markup
2019-02-09 22:25:16 +08:00
<tr><td> \image html jkqtfastplotter_test_small.png
<td> \subpage JKQTFastPlotterTest
<td> JKQTFastPlotter
2019-01-19 16:40:52 +08:00
</table>
*/