Robochameleon  v1.0
inherits_from.m
Go to the documentation of this file.
1 
2 function tf = inherits_from(obj,className)
3 
4 tf = any(strcmp(className,superclasses(obj)));
function inherits_from(in obj, in className)
Determine whether an object inherits from a specified superclass.