remove interactive mode for log plotting

this doesn't work in linux
This commit is contained in:
ali
2022-02-21 17:28:00 -06:00
parent 7d8f7855d5
commit 035a16d6d8

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python -i #!/usr/bin/env python
# Script: logplot.py # Script: logplot.py
# Purpose: use GnuPlot to plot two columns from a LAMMPS log file # Purpose: use GnuPlot to plot two columns from a LAMMPS log file
@ -25,4 +25,3 @@ lg = log(logfile)
x,y = lg.get(xlabel,ylabel) x,y = lg.get(xlabel,ylabel)
g = gnu() g = gnu()
g.plot(x,y) g.plot(x,y)
print "Type Ctrl-D to exit Python"