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