I am using matlab 2016b and was excited to see that there is some python support in Matlab (https://uk.mathworks.com/help/matlab/matlab_external/call-python-from-matlab.html)
I was wondering if there is a way to expose user-designed python classes to Matlab. So, say I have a python class:
class MyPythonClass(object):
def __init__(self):
self.value = 5
def set_value(self, v):
self.value = v
Could this simple python class be somehow exposed to Matlab in the newer versions of Matlab? I see python support but no mention of any matlab to python bridge.