Does anyone know how to run a Python matplotlib routine from Fortran? The way I am currently doing it is with:
call system('python plottingV.py')
However, I'd like to be able to interact with the script (I want to give the python routine a different input file on each iteration of a do loop. Any ideas?