Reputation: 4820
Is there a way to get the name of a MATLAB handle object as a string?
Upvotes: 1
Views: 1114
Reputation: 5831
Overwrite disp method of your from handle derived class! If you mean the type then call class(obj)
disp
handle
class(obj)
Upvotes: 3