LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
Section.m
1classdef Section < NetworkElement
2 % An abstract class for sections that define the behavior of a Node
3 %
4 % Copyright (c) 2012-2026, Imperial College London
5 % All rights reserved.
6
7 properties
8 className;
9 end
10
11 methods(Hidden)
12 %Constructor
13 function self = Section(className)
14 % SELF = SECTION(CLASSNAME)
15
16 self@NetworkElement('Section');
17 self.className = className;
18 end
19 end
20
21 methods
22 function summary(self)
23 % SUMMARY()
24
25 % line_printf('\n%s',class(self));
26 end
27 end
28end