skrf.plotting.plot_complex_rectangular

skrf.plotting.plot_complex_rectangular(z, x_label='Real', y_label='Imag', title='Complex Plane', show_legend=True, axis='equal', ax=None, **kwargs)[source]

Plot complex data on the complex plane.

Parameters:
  • z (array-like, of complex data) – data to plot

  • x_label (string, optional.) – x-axis label. Default is ‘Real’.

  • y_label (string, optional.) – y-axis label. Default is ‘Imag’.

  • title (string, optional.) – plot title. Default is ‘Complex Plane’

  • show_legend (Boolean, optional.) – controls the drawing of the legend. Default is True.

  • ax (matplotlib.axes.AxesSubplot object or None.) – axes to draw on. Default is None (creates a new figure)

  • **kwargs (passed to pylab.plot)

  • axis (str)

See also

plot_rectangular

plots rectangular data

plot_complex_rectangular

plot complex data on complex plane

plot_polar

plot polar data

plot_complex_polar

plot complex data on polar plane

plot_smith

plot complex data on smith chart