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:
16
examples/exPlot.cpp
Normal file
16
examples/exPlot.cpp
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user