1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 05:25:37 +01:00
LatAnalyze/examples/exPlot.cpp

17 lines
274 B
C++
Raw Normal View History

#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;
}