skrf.network.Network.plot_s_deg_unwrap

Network.plot_s_deg_unwrap(m=None, n=None, ax=None, show_legend=True, attribute='s_deg_unwrap', y_label='Phase (deg)', *args, **kwargs)

plot the Network attribute s_deg_unwrap vs frequency.

Parameters :

m : int, optional

first index of s-parameter matrix, if None will use all

n : int, optional

secon index of the s-parameter matrix, if None will use all

ax : matplotlib.Axes object, optional

An existing Axes object to plot on

show_legend : Boolean

draw legend or not

attribute : string

Network attribute to plot

y_label : string, optional

the y-axis label

*args,**kwargs : arguments, keyword arguments

passed to matplotlib.plot()

Notes

This function is dynamically generated upon Network initialization. This is accomplished by calling plot_vs_frequency_generic()

Examples

>>> myntwk.plot_s_deg_unwrap(m=1,n=0,color='r')

Previous topic

skrf.network.Network.plot_s_deg

Next topic

skrf.network.Network.plot_s_im

This Page