Is it possible to view the handle class properties when debugging a matlab function block in simulink?
Currently I have a matlab function block which instantiates a class. In neither the function block or the class itself can I see the properties of the class during debug. My workspace is empty.
When I run who while debugging I only get variables inside the function scope and no persistent variables (in the function block) and no class properties (inside the class itself). 
The only way to debug now is to store properties inside a local variable.