skrf.network.Network.plot_y_re

Network.plot_y_re(m=None, n=None, ax=None, show_legend=True, attribute='y_re', y_label='Real Part', *args, **kwargs)

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

Previous topic

skrf.network.Network.plot_y_rad_unwrap

Next topic

skrf.network.Network.plot_y_vswr

This Page