I\'m trying to grab a method handle from within an object in MATLAB, yet something in the sort of str2func(\'obj.MethodName\') is not working
One could also write
fstr = 'say'; obj.(fstr)();
This has the advantage that it does not require a handle class to work if the object (obj) is modified.