LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
getTranAvg.m
1function [QNclass_t, UNclass_t, TNclass_t] = getTranAvg(self, Qt, Ut, Tt)
2% [QNCLASS_T, UNCLASS_T, TNCLASS_T] = GETTRANAVG(SELF, QT, UT, TT)
3%
4% Returns transient mean performance metrics over time using
5% QBD-based Taylor series analysis (libQBD adaptive).
6%
7% Copyright (c) 2012-2026, Imperial College London
8% All rights reserved.
9
10if nargin == 1
11 [Qt, Ut, Tt] = self.getTranHandles;
12end
13
14options = self.options;
15% Force MATLAB path for transient analysis (Java path does not support transient)
16self.options.lang = 'matlab';
17self.options.method = 'ldqbd';
18
19[QNclass_t, UNclass_t, TNclass_t] = getTranAvg@NetworkSolver(self, Qt, Ut, Tt);
20self.options = options;
21end