LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
getLinkedRoutingMatrix.m
1function P = getLinkedRoutingMatrix(self)
2% P = GETLINKEDROUTINGMATRIX()
3
4sn = self.getStruct(false);
5P = sn.rtorig;
6
7% if isempty(sn.rtorig)
8% %line_warning(mfilename,'Unsupported: getLinkedRoutingMatrix() requires that the model topology has been instantiated with the link() method. Attempting auto-recovery.\n');
9% %fname = lineTempName;
10% %QN2SCRIPT(self,self.name,fname);
11% %run(fname);
12% %delete(fname);
13% %P = model.getStruct().rtorig;
14% end
15
16end