LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
Timing.m
1classdef Timing < ServiceSection
2 % A service tunnel for general nodes
3 %
4 % Copyright (c) 2012-2026, Imperial College London
5 % All rights reserved.
6
7 methods
8 %Constructor
9 function self = Timing(name)
10 % SELF = SERVICETUNNEL(NAME)
11
12 if nargin<1
13 name = 'Timing';
14 end
15 self@ServiceSection(name);
16 self.numberOfServers = 1;
17 self.serviceProcess = {};
18 end
19 end
20
21end
22
Definition mmt.m:92