LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
QueueingStation.m
1classdef QueueingStation < Queue
2 % Alias for the Queue class
3 %
4 % Copyright (c) 2012-2026, Imperial College London
5 % All rights reserved.
6
7 methods
8 %Constructor
9 function self = QueueingStation(model, name, schedStrategy)
10 % SELF = QUEUEINGSTATION(MODEL, NAME, SCHEDSTRATEGY)
11
12 self@Queue(model, name, schedStrategy);
13 end
14 end
15end