mwavepy.network.Network.plot_s_polar

Network.plot_s_polar(m=0, n=0, ax=None, show_legend=True, *args, **kwargs)

plots the scattering parameter in polar form.

plots indecies m, n, where m and n can be integers or lists of integers.

Parameters :

m : int, optional

first index

n : int, optional

second index

ax : matplotlib.Axes object, optional

axes to plot on. in case you want to update an existing plot.

show_legend : boolean, optional

to turn legend show legend of not, optional

*args : arguments, optional

passed to the matplotlib.plot command

**kwargs : keyword arguments, optional

passed to the matplotlib.plot command

Examples

>>> myntwk.plot_s_polar()
>>> myntwk.plot_s_polar(m=0,n=1,color='b', marker='x')

Previous topic

mwavepy.network.Network.plot_s_complex

Next topic

mwavepy.network.Network.plot_s_smith

This Page