This library has routines for plotting inside Fortran using Gnuplot
- First clone the repository:
git clone https://github.com/JoseAntonioLattice/libgnuplot-fortran.git
- Move to the directory where you clone the repository and run
make all
this will compile and install the library libgnuplot.so
on $HOME/Fortran/lib
.
For running the test, type
make test
- Import the module into your program
program main
use gnuplot
implicit none
!!!!!!!!!!!
! your code
!!!!!!!!!!!
end program main