skrf.network.Network.plot_s_complex

Network.plot_s_complex(m=None, n=None, ax=None, show_legend=True, prop_name='s', *args, **kwargs)

plot the Network attribute s 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(m=1,n=0,color='r')

Previous topic

skrf.network.Network.plot_s_arcl_unwrap

Next topic

skrf.network.Network.plot_s_db

This Page