Skip to content

Instantly share code, notes, and snippets.

@edy555
Created March 30, 2013 02:21
Embed
What would you like to do?
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