Can I find out if a class is an abstract class before trying to instantiate it?
Can i somehow say:
if isAbstract(className)
% do something
else
% do something else
end
NOTE:-
Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help , Finance Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.
A class is abstract if any of its properties or methods is abstract.
It’s possible to write a function, is_abstract. Start:
mco = ?my_class
mco.PropertyList
mco.MethodList
any([mco.MethodList.Abstract])
or better
mcls = meta.class.fromName('ClassName')
SEE COMPLETE ANSWER CLICK THE LINK