skrf.network.Network.plot_s_time_step¶
-
Network.
plot_s_time_step
(m=None, n=None, ax=None, show_legend=True, attribute='s_time_step', y_label='Magnitude', pad=0, window='hamming', z0=50, *args, **kwargs)¶ plot the Network attribute
s_time_step
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_time_step(m=1,n=0,color='r')