Inital comit.

Basic transfer function and tank impedance plotting
This commit is contained in:
Luke 2018-07-17 18:33:39 -07:00
commit 190ca4ded5
12 changed files with 4221 additions and 0 deletions

View file

@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-
import matplotlib
from matplotlib.projections import register_projection
from .smithaxes import SmithAxes
# check version requierment
if matplotlib.__version__ < '1.2':
raise ImportError("pySmithPlot requires at least matplotlib version 1.2")
# add smith projection to available projections
register_projection(SmithAxes)