Recent content by rdnck76

  1. R

    Fortran How to Call Gnuplot from Fortran to Plot Data Points?

    Hi Abraham, Try using the "system" subroutine. CALL SYSTEM(gnuplot ) Whatever you put inside the parentheses gets passed to the command line (or terminal depending on your os.)
  2. R

    Fortran Is it possible to take advantage of a multicore processor for fortran?

    Check out the OpenMP page on gfortran's website on specific compiler directives. http://gcc.gnu.org/onlinedocs/gfortran/OpenMP.html