1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-22 08:52:01 +01:00

minor code cleaning and examples update

This commit is contained in:
2014-02-10 11:22:56 +00:00
parent db61c7ea90
commit 84d063edf0
6 changed files with 68 additions and 44 deletions

16
examples/exPlot.cpp Normal file
View File

@ -0,0 +1,16 @@
#include <iostream>
#include <latan/Plot.hpp>
using namespace std;
using namespace Latan;
int main(void)
{
Plot p;
p << PlotCommand("x**2") << PlotCommand("x**3") << PlotCommand("x**4");
cout << p << endl;
p.display();
return EXIT_SUCCESS;
}