plot_isar_3d#

MonostaticRCSPlotter.plot_isar_3d(plane_cut: str = 'xz', plane_offset: float = 0, title='ISAR 3D cut', output_file=None, show=True, size=(1920, 1440), figure=None)[source]#

Create a 2D pcolor plot of a 3D-ISAR cut.

Parameters:
titlestr, default: "ISAR 3D cut"

Plot title.

plane_cutstr, default: "xz"

Cut to be plotted. Options are "xz", "yz", and "xy".

plane_offsetfloat, default: 0

Offset of the plane to plot. (It finds the closest available.)

output_filestr, default: None

Full path for the image file. The default is None, in which case an image in not exported.

showbool, default: True

Whether to show the plot. If False, the Matplotlib instance of the plot is shown.

sizetuple, default: (1920, 1440)

Image size in pixel (width, height).

figurematplotlib.pyplot.Figure, default: None

An existing Matplotlib figure to add the plot to. If no figure is provided, new Figure and Axes objects are created.

Returns:
ansys.aedt.core.visualization.plot.matplotlib.ReportPlotter

PyAEDT matplotlib figure object.