I would like to define a class in one file and its methods in several other files.
Apparently, the way to do this is to create a subfolder named @<ClassName>
in the class folder and put all the method files in the so-called "@ -folder".
However, as soon as I created the @ -folder, I am not sure what to add to the class definition file so that it knows about the methods in the @ -folder.
classdef myClass properties myProperty = 0; end methods %
source share