/aplot

Library for Dynamic and Animated Plots from C/C++.

Primary LanguageC++GNU General Public License v3.0GPL-3.0

aplot

Library for Dynamic and Animated Plots from C/C++.

Library is self contained with two files:

  1. aplot.h
  2. aplot.cc

Dependencies:

  1. gnuplot (main engine)
  2. ImageMagik
  3. Latex (for formulas within the graphs)

General instructions for use:

A. Download these files to any directory.

B. Include the header in the main program. #include<path./././aplot.h> int main() { /// check the aplot_test1.cc/aplot_test2.cc/aplot_test.cc for usage ....... ......... return 0; }

C. Compilation $ g++ -c path./././aplot.cc

D. Execution $ g++ test_aplot1.cc aplot.o -o test_aplot1.exe (for example). $ ./test_aplot1.exe

BINGO! ENJOY !

Note: Tested for C++ under Linux Ubuntu 19.10 but porting to any platforms should be straight forward as source is given.