LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
getNodeNames.m
1function [names,hostnames,tasknames,entrynames,actnames] = getNodeNames(self)
2% NAME = GETNODENAMES(SELF)
3
4% Copyright (c) 2012-2026, Imperial College London
5% All rights reserved.
6hostnames = cellfun(@(x)x.name,self.hosts,'UniformOutput',false);
7tasknames = cellfun(@(x)x.name,self.tasks,'UniformOutput',false);
8entrynames = cellfun(@(x)x.name,self.entries,'UniformOutput',false);
9actnames = cellfun(@(x)x.name,self.activities,'UniformOutput',false);
10names = [hostnames(:)',tasknames(:)',entrynames(:)',actnames(:)'];
11end