ps_plotter/pySmithPlot/smithplot/__init__.py
Luke 190ca4ded5 Inital comit.
Basic transfer function and tank impedance plotting
2018-07-17 18:33:39 -07:00

12 lines
365 B
Python

# -*- 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)