skrf.plotting.plot_complex_polar

skrf.plotting.plot_complex_polar(z, x_label=None, y_label=None, title=None, show_legend=True, axis_equal=False, ax=None, **kwargs)[source]

Plot complex data in polar format.

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

  • x_label (string or None, optional) – x-axis label. Default is None.

  • y_label (string or None, optional.) – y-axis label. Default is None

  • title (string or None, optional.) – plot title. Default is None.

  • 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_equal (bool) –

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