skrf.network.Network.plot_s_vswr

Network.plot_s_vswr(m=None, n=None, ax=None, show_legend=True, y_label=None, logx=False, **kwargs)

plot the Network attribute s_vswr component vs frequency.

Parameters:
  • m (int, optional) – first index of s-parameter matrix, if None will use all

  • n (int, optional) – second 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

  • y_label (string, optional) – the y-axis label

  • logx (Boolean, optional) – Enable logarithmic x-axis, default off

  • **kwargs (arguments, keyword arguments) – passed to matplotlib.plot()

  • attribute (str) –

  • conversion (str) –

Note

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

Examples

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