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:
- title
str, default:"ISAR 3D cut" Plot title.
- plane_cut
str, default:"xz" Cut to be plotted. Options are
"xz","yz", and"xy".- plane_offset
float, default:0 Offset of the plane to plot. (It finds the closest available.)
- output_file
str, 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.- size
tuple, default: (1920, 1440) Image size in pixel (width, height).
- figure
matplotlib.pyplot.Figure, default:None An existing Matplotlib figure to add the plot to. If no figure is provided, new
FigureandAxesobjects are created.
- title
- Returns:
ansys.aedt.core.visualization.plot.matplotlib.ReportPlotterPyAEDT matplotlib figure object.