Determine if method of object
tf = ismethod(obj,'methodName')
tf = ismethod(obj,'methodName')
returns
logical 1
(true
) if the specified methodName
is
a public method of object obj
. Otherwise, returns
logical 0
(false
).
Determine if objects support equality testing:
if ismethod(obj1,'eq') && ismethod(obj2,'eq') tf = obj1 == obj2; end