LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
getNodeIndex.m
1function idx = getNodeIndex(self,node)
2% IDX = GETNODEINDEX(SELF,NODE)
3
4% Copyright (c) 2012-2026, Imperial College London
5% All rights reserved.
6
7idx = find(cellfun(@any,strfind(self.getNodeNames,node.name)));
8end