plot_A_3D (method)

plot_A_3D(Xdata, Ydata, Zdata, colormap='RdBu', x_min=None, x_max=None, y_min=None, y_max=None, z_min=None, z_max=None, title='', xlabel='', ylabel='', zlabel='', xticks=None, yticks=None, fig=None, subplot_index=None, is_logscale_x=False, is_logscale_y=False, is_logscale_z=False, is_disp_title=True, type='stem', save_path=None)[source]

Plots a 3D graph (“stem”, “surf” or “pcolor”)

Parameters
  • Xdata (ndarray) – array of x-axis values

  • Ydata (ndarray) – array of y-axis values

  • Zdata (ndarray) – array of z-axis values

  • colormap (colormap object) – colormap prescribed by user

  • x_min (float) – minimum value for the x-axis (no automated scaling in 3D)

  • x_max (float) – maximum value for the x-axis (no automated scaling in 3D)

  • y_min (float) – minimum value for the y-axis (no automated scaling in 3D)

  • y_max (float) – maximum value for the y-axis (no automated scaling in 3D)

  • z_min (float) – minimum value for the z-axis (no automated scaling in 3D)

  • z_max (float) – maximum value for the z-axis (no automated scaling in 3D)

  • title (str) – title of the graph

  • xlabel (str) – label for the x-axis

  • ylabel (str) – label for the y-axis

  • zlabel (str) – label for the z-axis

  • xticks (list) – list of ticks to use for the x-axis

  • fig (Matplotlib.figure.Figure) – existing figure to use if None create a new one

  • subplot_index (int) – index of subplot in which to plot

  • is_logscale_x (bool) – boolean indicating if the x-axis must be set in logarithmic scale

  • is_logscale_y (bool) – boolean indicating if the y-axis must be set in logarithmic scale

  • is_logscale_z (bool) – boolean indicating if the z-axis must be set in logarithmic scale

  • is_disp_title (bool) – boolean indicating if the title must be displayed

  • type (str) – type of 3D graph : “stem”, “surf”, “pcolor” or “scatter”