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
Use @. The following code works for me:
@
f = @obj.MethodName