LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
NetworkElement.m
1classdef NetworkElement < Element
2 % A generic element of a Network model.
3 %
4 % Copyright (c) 2012-2026, Imperial College London
5 % All rights reserved.
6
7 properties (Hidden)
8 attribute; % custom attribute
9 end
10
11 methods
12 %Constructor
13 function self = NetworkElement(name)
14 % SELF = NETWORKELEMENT(NAME)
15 self@Element(name);
16 end
17 end
18
19end