MATLAB: Use function handle in MEX file (serialize it)

function handleinterfaceMATLABmex

What sorts of things can one do with a function handle in a MEX file?
What I'd like to do is extract all the relevant data from an mxArray that represents a function handle in such a way that I could create a different mxArray that will represent the same function handle.
In other words, I'd need to serialize an mxArray function handle.
I need this while building a bridge between MATLAB and another language. I would like to support classes in MATLAB. I can take apart just about any other kind of mxArray and put them back together as there exist mx* functions for these (e.g. mxGetData() for numerical arrays, etc.) So far it's only function handles I couldn't cope with.
EDIT: For this application I can always keep a dictionary of available function handles. I do not need or want to expose the underlying data (which may be a pointer, thus unsafe). But in order to keep a dictionary, I need to be able to at least compare function handles: do two mxArray refer to the same function handle?

Best Answer

You might look into these undocumented API functions:
mxSerialize
mxDeserialize
I have never used them myself, but you can find some information here:
I have no idea how these functions would work for a function handle, which can have multiple embedded mxArray data buried within them.
How are you going to deal with classdef objects?
Related Question