I have an object from a black box of type:
<matplotlib.axes._axes.Axes object at 0x7fedbe19c1d0>
I would like to plot it in a matplotlibwidget, in my pyqt5 GUI.
The problem is: How to plot my object in a specific figure?
I tried this:
myObject = blackBox()
myObject_figure = myObject.get_figure()
myObject_figure.show()
So here I can plot my <matplotlib.figure.Figure>
object in a new figure, but I would like to plot it in a specific figure...