There is no direct way to combine MATLAB and python plots, but there is tweek that you can try:
- Create your plots in MATLAB and save them as image files (e.g., PNG).
- Load these images in Python using Matplotlib and overlay them on your existing Python plots.
By doing this you will be able to combine MATLAB and Python plots with matplotlib.
