No BSD License  

Highlights from
OO-Matlab Inheritance Example

from OO-Matlab Inheritance Example by Stijn Helsen
After the request in the newsgroup, a requested example.

useclassestest
function useclassestest

c = samplederived; % instantiate a "Derived" object instance
DoSomething(c,'My string');
DoSomething(c);
DoIntSomething(c); % Call the base class' method
DoSomethingFirst(c); 

Contact us