does know how run python matplotlib routine fortran? way doing with:
call system('python plottingv.py') however, i'd able interact script (i want give python routine different input file on each iteration of loop. ideas?
the simplest thing give python script command line parameter, namely input file name. like:
call system ('python plottingv.py myinputfile1.dat') you can use sys.argv[1] obtain input file name in python script.
Comments
Post a Comment