enumerate.paths {LoopAnalyst} | R Documentation |
Enumerates a list of all paths from parameter i to parameter j in a community matrix after first validating that CM
is a community matrix.
enumerate.paths(CM,i,j)
CM |
A community matrix. |
i,j |
parameters in the community matrix CM . Parameters may be specified by their names or their parameter number (i.e. the row/column number corresponding to a specific parameter). |
The returned list of paths contains each path from i to j in CM
in breadth-first search order). Each element in a path is represented by its parameter number.
A list of paths.
Alexis Dinno http://www.doyenne.com/LoopAnalyst/
Puccia, C. J. and Levins, R. (1986) Qualitative Modeling of Complex Systems: An Introduction to Loop Analysis and Time Averaging. Cambridge: Harvard University Press.
## assess community matrix data(community.matrix) enumerate.paths(community.matrix,2,5)