Attachment 'plot.py'

Download

   1 #!/usr/bin/env python
   2 # A simple plotting program
   3 
   4 import numpy as np
   5 import matplotlib.pyplot as plt
   6 from sys import argv
   7 
   8 # Read the data
   9 data=np.loadtxt(argv[1]).transpose()
  10 
  11 # make an x-y plot
  12 plt.plot(data[0],data[1])
  13 
  14 # display the plot
  15 plt.show()

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.

You are not allowed to attach a file to this page.