| |
| Category: | Wiki/Software/Science and Engineering | Rating: | |
| Name: | Multiplot | Popularity: | 5% |
| Version: | 0.5 | License: | GNU Library General Public License |
| Author: | Andre Frank Krause | EMail: | post |
| Created: | Jun 09, 2016 |
| Updated: | Aug 31, 2016 |
| Home Page: | http://www.andre-krause.de/multiplot/index.html (1613 visits) |
| Download: | http://www.andre-krause.de/multiplot/download/multiplot-0.5.zip (1122 visits) |
| Description: | Multiplot is a simple to use scientific plotting tool. It is a single header library: just include multiplot.h and you are ready to go.
Axes scale automatically to fit the plot (but can be set to different scaling behaviours)
Example:
void main()
{
Multiplot m(10,10,600,300); // new plot window: x,y,w,h
m.show();
for(int x=0;x<300;x++)
{
m.plot(x, 0.1*x*sin(0.1*x));
m.redraw();
m.check();
}
}
|
[ Submit Article | View All ]
[ Submit Comment ] |
| |