Skip to content

Instantly share code, notes, and snippets.

@edy555
Created March 30, 2013 02:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edy555/5275009 to your computer and use it in GitHub Desktop.
Save edy555/5275009 to your computer and use it in GitHub Desktop.
matplotlibによるVNA測定結果の極座標表示
from pylab import *
f,arg,mag,ref = loadtxt('vnaplot.dat', delimiter=' ', unpack=True)
polar(arg, mag)
polar(arg, ref)
grid(True)
show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment