다음: Value Classes vs. Handle Classes, 이전: Methods, 상위 문서: classdef Classes [차례][찾아보기]
Classes can inherit from other classes. In this case all properties and
methods of the superclass are inherited to the subclass, considering their
access rights. Use this syntax to inherit from superclass
:
classdef subclass < superclass … endclassdef